refactor for preparation of flake based systems

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-12-23 11:27:02 -06:00
parent 6527f67145
commit 25e9d06354
121 changed files with 449 additions and 40 deletions

View file

@ -0,0 +1,24 @@
{
config,
settings,
ylib,
...
}@inputs:
let
home-manager = settings.home-manager;
in
{
imports = [ home-manager.nixosModules.home-manager ];
# Home manager options
security.polkit.enable = true;
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {
nixConfig = config;
inherit settings;
inherit ylib;
inherit (inputs) ragenix;
inherit (config) age;
};
}