dots/hosts/laptop/home.nix
wi11-holdsworth f2b6808c93 refactor: move graphical applications to a separate bundle
this facilitates lean clients, e.g. a laptop with only a virutal console
2026-01-06 13:29:42 +11:00

27 lines
488 B
Nix

{
# keep-sorted start
userName,
util,
# keep-sorted end
...
}:
{
imports = [
../../modules/home-manager/default.nix
]
++ (util.toImports ../../modules/home-manager/bundles [
# keep-sorted start
"desktop"
"dev"
"gui"
# keep-sorted end
]);
age.secrets."protonmail-laptop-password".file = ../../secrets/protonmail-laptop-password.age;
home = {
username = "${userName}";
homeDirectory = "/home/will";
stateVersion = "24.11";
};
}