dots/hosts/laptop/home.nix
2025-07-11 16:57:21 +10:00

19 lines
252 B
Nix

{
userName,
...
}:
{
imports = [ ../../modules/home-manager/default.nix ];
# reusable modules
desktop.enable = true;
# config
home = {
username = "${userName}";
homeDirectory = "/home/will";
stateVersion = "24.11";
};
}