made dev and gaming attributes consistent

This commit is contained in:
2026-07-07 17:25:24 +01:00
parent a67e855aca
commit b149325e23
2 changed files with 13 additions and 21 deletions

View File

@@ -1,17 +1,13 @@
{
self,
inputs,
moduleWithSystem,
...
}: {
flake.nixosModules.gaming = {
pkgs,
lib,
...
}: let
flake.nixosModules.gaming = moduleWithSystem ({...}: let
modules = with self.nixosModules; [
steam
];
steam
];
in {
imports = modules;
};
});
}