This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-11-14 01:21:34 +01:00
parent 55587f35f6
commit 77e9aa4ddd
3 changed files with 29 additions and 5 deletions

View File

@@ -1,7 +1,18 @@
{ pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{ pkgs-unstable, lib, host, ... }:
lib.mkIf (host == "NxNORTH")
{
home.packages = with pkgs; [
mindustry-wayland
];
home = {
packages = with pkgs-unstable; [
protonup
mangohud
heroic
mindustry-wayland
];
sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
};
};
}