.dotfiles/dot_config/flake/machines/saffron/home.nix
2025-11-28 23:35:18 -05:00

16 lines
225 B
Nix

{lib, ...}: {
imports = [
../../home/common.nix
../../home/helide
];
home = {
username = "tyler";
homeDirectory = lib.mkForce "/home/tyler";
packages = [
];
stateVersion = "23.11";
};
}