feat(servers): setup home manager.
This commit is contained in:
parent
fd482cd146
commit
58c9fc74b1
4 changed files with 139 additions and 36 deletions
10
modules/servers/home-manager/default.nix
Normal file
10
modules/servers/home-manager/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{inputs, ...}: {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||
home-manager.backupFileExtension = "backup";
|
||||
home-manager.users.root = {
|
||||
imports = [
|
||||
./home.nix
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue