Split home config off
This commit is contained in:
parent
e1436242fe
commit
d86a989bbd
9 changed files with 90 additions and 61 deletions
15
helpers.nix
15
helpers.nix
|
@ -88,7 +88,20 @@ with inputs.nixpkgs.lib; {
|
|||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
backupFileExtension = "backup";
|
||||
users.fern = ./home.nix;
|
||||
users.fern = {
|
||||
# Me!
|
||||
home.username = "fern";
|
||||
home.homeDirectory = "/home/fern";
|
||||
|
||||
# Home manager version.
|
||||
home.stateVersion = "25.05";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Import config.
|
||||
imports = [./suites/${suite}/home.nix];
|
||||
};
|
||||
};
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue