Use home-manager, ghostty home settings
This commit is contained in:
parent
be1132ccb6
commit
667c8259c0
6 changed files with 66 additions and 0 deletions
12
helpers.nix
12
helpers.nix
|
@ -76,8 +76,20 @@ with inputs.nixpkgs.lib; {
|
|||
modules =
|
||||
[
|
||||
nixvim.nixosModules.nixvim # Neovim.
|
||||
|
||||
./suites/${suite} # Collection of configuration options for different types of systems.
|
||||
./hosts/${hostname} # Host-specific config.
|
||||
|
||||
# Home manager.
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
backupFileExtension = "backup";
|
||||
users.fern = ./home.nix;
|
||||
};
|
||||
}
|
||||
]
|
||||
++ extraModules;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue