Compare commits
2 Commits
e26ac7cbe2
...
37eb70db63
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37eb70db63 | ||
|
|
77e9aa4ddd |
@@ -6,6 +6,7 @@
|
||||
./system-modules/auto-mount.nix
|
||||
./system-modules/hardware-configuration.nix
|
||||
./system-modules/fuse.nix
|
||||
./system-modules/games.nix
|
||||
./system-modules/nvidia.nix
|
||||
./system-modules/users.nix
|
||||
./system-modules/sound.nix
|
||||
|
||||
@@ -1,7 +1,18 @@
|
||||
{ pkgs, lib, host, ... }:
|
||||
lib.mkIf (host != "NxACE")
|
||||
{ pkgs-unstable, lib, host, ... }:
|
||||
lib.mkIf (host == "NxNORTH")
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home = {
|
||||
packages = with pkgs-unstable; [
|
||||
protonup
|
||||
mangohud
|
||||
|
||||
heroic
|
||||
|
||||
mindustry-wayland
|
||||
];
|
||||
sessionVariables = {
|
||||
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
12
system-modules/games.nix
Normal file
12
system-modules/games.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ lib, host, ... }:
|
||||
lib.mkIf (host == "NxNORTH")
|
||||
{
|
||||
programs = {
|
||||
gamemode = {
|
||||
enable = true;
|
||||
};
|
||||
gamescope = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user