19 lines
315 B
Nix
Executable File
19 lines
315 B
Nix
Executable File
{ pkgs-unstable, lib, host, ... }:
|
|
lib.mkIf (host == "NxNORTH")
|
|
{
|
|
home = {
|
|
packages = with pkgs-unstable; [
|
|
protonup
|
|
mangohud
|
|
|
|
heroic
|
|
|
|
mindustry-wayland
|
|
];
|
|
sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
|
|
};
|
|
};
|
|
}
|
|
|