This commit is contained in:
Matthew Bessette
2026-04-05 00:54:01 -04:00
parent 10da3b7da6
commit 273396aa99
3 changed files with 131 additions and 1 deletions

View File

@@ -67,6 +67,15 @@
{
nixpkgs.config.allowUnfree = true;
}
# The Home Manager NixOS module
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.users."mbessette" = import ./caesium.home.nix;
home-manager.backupFileExtension = "before-nix";
}
];
};