Refactor user configuration

This commit is contained in:
SebastianStork 2025-08-17 16:25:41 +02:00
parent 4785c99ea4
commit 9ecc4cf9ea
15 changed files with 72 additions and 75 deletions

17
users/home-manager.nix Normal file
View file

@ -0,0 +1,17 @@
{
inputs,
self,
pkgs-unstable,
...
}:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs self pkgs-unstable;
};
};
}