Added satisfacotry mod manager

This commit is contained in:
Alexandre 2026-02-24 17:18:12 +01:00
parent 9a1a6cad54
commit 8f2d90bc48
4 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,7 @@ in
modules.nixos.gaming.starCitizen modules.nixos.gaming.starCitizen
modules.nixos.gaming.steam modules.nixos.gaming.steam
modules.nixos.gaming.vr modules.nixos.gaming.vr
modules.nixos.gaming.mod
modules.common.spotify modules.common.spotify
]; ];
} }

View File

@ -33,6 +33,7 @@
starCitizen = ./nixos/gaming/starCitizen.nix; starCitizen = ./nixos/gaming/starCitizen.nix;
steam = ./nixos/gaming/steam.nix; steam = ./nixos/gaming/steam.nix;
vr = ./nixos/gaming/vr.nix; vr = ./nixos/gaming/vr.nix;
mod = ./nixos/gaming/mod.nix;
}; };
bootloader = ./nixos/bootloader.nix; bootloader = ./nixos/bootloader.nix;

View File

@ -43,6 +43,7 @@ in
follow_mouse = "1"; follow_mouse = "1";
touchpad = { touchpad = {
disable_while_typing = false; disable_while_typing = false;
natural_scroll = true;
}; };
}; };

View File

@ -0,0 +1,8 @@
{ pkgs, ...}:
{
# Mod managers
environment.systemPackages = with pkgs; [
satisfactorymodmanager
];
}