Use home-manager, ghostty home settings

This commit is contained in:
Fern Garden 2025-07-19 17:57:59 +08:00
parent be1132ccb6
commit 667c8259c0
6 changed files with 66 additions and 0 deletions

View file

@ -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;
};