flake.nix: create per host home-manager config files
This commit is contained in:
parent
55d80bac48
commit
47c0ee8b68
|
@ -191,7 +191,10 @@
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
];
|
];
|
||||||
|
|
||||||
users.h7x4.imports = [ ./home/home.nix ];
|
users.h7x4.imports = [
|
||||||
|
./home/home.nix
|
||||||
|
./hosts/${name}/home
|
||||||
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
] ++ (extraConfig.modules or [ ]);
|
] ++ (extraConfig.modules or [ ]);
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue