WIP: restructure home manager

This commit is contained in:
Kopatz
2023-12-12 12:18:24 +01:00
parent 4226af0214
commit b790b90bf3
12 changed files with 150 additions and 74 deletions

17
users/default.nix Normal file
View File

@@ -0,0 +1,17 @@
{ inputs
, pkgs
, lib
, config
, ...
}:
{
imports = [ ./option.nix ];
home-manager = {
useGlobalPkgs = true;
extraSpecialArgs = {
inherit inputs;
headless = false;
};
useUserPackages = true;
};
}