This commit is contained in:
2026-03-03 23:06:45 +01:00
parent e3b903d010
commit dc14b13420
45 changed files with 611 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.gaming-sys-controller = { ... }: {
services.udev.extraRules = ''
ACTION=="add|change", KERNEL=="event[0-9]*", ATTRS{name}=="*Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
'';
};
}

View File

@@ -0,0 +1,8 @@
{ ... }: {
flake.nixosModules.gaming-sys-jovian = { ... }:{
jovian.steam.enable = true;
jovian.steam.autoStart = true;
jovian.steam.user = deck;
jovian.steam.desktopSession = "gnome";
};
}

View File

@@ -0,0 +1,6 @@
{ ... }: {
flake.nixosModules.gaming-sys-lact = {
services.lact.enable = true;
hardware.amdgpu.overdrive.enable = true;
};
}

View File

@@ -0,0 +1,17 @@
{ ... }: {
flake.nixosModules.gaming-sys-steam = { pkgs-unstable, ... }: {
programs.steam = {
enable = true;
extest.enable = true;
extraCompatPackages = with pkgs-unstable; [
proton-ge-bin
];
extraPackages = with pkgs-unstable; [
gamescope
mangohud
];
};
};
}