simplify and inline a lot of home-manager stuff

This commit is contained in:
2025-04-07 20:50:03 -04:00
parent 7e062aa064
commit d13ba86697
4 changed files with 40 additions and 29 deletions

View File

@@ -4,6 +4,7 @@
lib,
homeDirectory,
config,
username,
...
}:
let
@@ -48,6 +49,20 @@ in
imports = [
./progs/fish.nix
./progs/helix.nix
inputs.agenix.homeManagerModules.age
(
{ ... }:
{
nixpkgs.overlays = [
inputs.rust-overlay.overlays.default
];
# home-manager stuff
home = {
inherit username homeDirectory;
};
}
)
];
home.stateVersion = "24.11";