feat(package): sentinel: some changes

This commit is contained in:
2025-10-25 06:48:48 +00:00
parent 9903e83f68
commit 450ba9229b
5 changed files with 70 additions and 18 deletions

View File

@@ -104,14 +104,14 @@
inherit system;
modules = [
self.nixosModules.hectic
{ services.hardware.lenovo-ideapad-15arh7 = opts; }
{ hectic.hardware.lenovo-ideapad-15arh7 = opts; }
];
});
cases = {
enable = { enable = true; };
disabled = { enable = false; };
customFoo = { enable = true; foo = "bar"; };
#enable = { enable = true; };
#disabled = { enable = false; };
#customFoo = { enable = true; foo = "bar"; };
};
in nixpkgs.lib.mapAttrs
(name: opts: (mkSys system opts).config.system.build.toplevel) cases;