reorganization into flat profile-based modules

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 16:08:17 +02:00
parent 1bc8c22feb
commit 127227205d
Signed by: semere
GPG key ID: 7FC937214DF30488
15 changed files with 660 additions and 696 deletions

View file

@ -35,7 +35,7 @@
in
lib.nixosSystem {
system = hostConfig.system;
specialArgs = { inherit userVars; };
specialArgs = { inherit userVars self; };
modules = [
hostConfig.configModule
]
@ -45,7 +45,7 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit userVars; };
extraSpecialArgs = { inherit userVars self; };
backupFileExtension = "backup";
};
}
@ -55,5 +55,6 @@
in
{
inherit nixosConfigurations;
nixosModules = import ./modules { inherit lib self; };
};
}