switched to dentritic pattern and cleaned up config

This commit is contained in:
2026-08-30 13:24:46 +02:00
parent 325f4a0e0c
commit 47325d4031
133 changed files with 565 additions and 1865 deletions
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
flake.modules.nixos.cemu = { pkgs, ... }: {
environment.systemPackages = with pkgs; [ cemu ];
services.udev.extraRules = ''
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="1430", ATTRS{idProduct}=="0150", MODE="0666"
'';
};
}
+9
View File
@@ -0,0 +1,9 @@
{ self, ... }:
{
flake.modules.nixos.gaming = { ... }: {
imports = [
self.modules.nixos.cemu
self.modules.nixos.steam
];
};
}
+5
View File
@@ -0,0 +1,5 @@
{ ... }: {
flake.modules.nixos.steam = { ... }: {
programs.steam.enable = true;
};
}