mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Added satisfacotry mod manager
This commit is contained in:
parent
9a1a6cad54
commit
8f2d90bc48
@ -12,6 +12,7 @@ in
|
||||
modules.nixos.gaming.starCitizen
|
||||
modules.nixos.gaming.steam
|
||||
modules.nixos.gaming.vr
|
||||
modules.nixos.gaming.mod
|
||||
modules.common.spotify
|
||||
];
|
||||
}
|
||||
|
||||
@ -33,6 +33,7 @@
|
||||
starCitizen = ./nixos/gaming/starCitizen.nix;
|
||||
steam = ./nixos/gaming/steam.nix;
|
||||
vr = ./nixos/gaming/vr.nix;
|
||||
mod = ./nixos/gaming/mod.nix;
|
||||
};
|
||||
|
||||
bootloader = ./nixos/bootloader.nix;
|
||||
|
||||
@ -43,6 +43,7 @@ in
|
||||
follow_mouse = "1";
|
||||
touchpad = {
|
||||
disable_while_typing = false;
|
||||
natural_scroll = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
8
modules/nixos/gaming/mod.nix
Normal file
8
modules/nixos/gaming/mod.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ pkgs, ...}:
|
||||
|
||||
{
|
||||
# Mod managers
|
||||
environment.systemPackages = with pkgs; [
|
||||
satisfactorymodmanager
|
||||
];
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user