mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
more modules
This commit is contained in:
7
modules/gaming/controller/controller.nix
Normal file
7
modules/gaming/controller/controller.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.controller = { ... }: {
|
||||
services.udev.extraRules = ''
|
||||
ACTION=="add|change", KERNEL=="event[0-9]*", ATTRS{name}=="*Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
|
||||
'';
|
||||
};
|
||||
}
|
||||
8
modules/gaming/jovian/jovian.nix
Normal file
8
modules/gaming/jovian/jovian.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.jovian = { user, ... }:{
|
||||
jovian.steam.enable = true;
|
||||
jovian.steam.autoStart = true;
|
||||
jovian.steam.user = user;
|
||||
jovian.steam.desktopSession = "gnome";
|
||||
};
|
||||
}
|
||||
6
modules/gaming/lact/lact.nix
Normal file
6
modules/gaming/lact/lact.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.lact = {
|
||||
services.lact.enable = true;
|
||||
hardware.amdgpu.overdrive.enable = true;
|
||||
};
|
||||
}
|
||||
17
modules/gaming/steam/steam.nix
Normal file
17
modules/gaming/steam/steam.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.steam = { pkgs-unstable, ... }: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
extest.enable = true;
|
||||
|
||||
extraCompatPackages = with pkgs-unstable; [
|
||||
proton-ge-bin
|
||||
];
|
||||
|
||||
extraPackages = with pkgs-unstable; [
|
||||
gamescope
|
||||
mangohud
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user