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