home manager settings

This commit is contained in:
2026-03-03 11:57:16 +01:00
parent acbb7ed945
commit 78b37aa0b8
4 changed files with 27 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ inputs, ... }: {
{ inputs, config, ... }: {
flake.nixosModules.base = {
imports = with inputs.self.nixosModules; [
boot
@@ -14,4 +14,11 @@
zsh
];
};
flake.homeManagerModules.base = { ... }: {
imports = with config.flake.homeManagerModules; [
git
zsh
];
};
}