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