16 lines
246 B
Nix
16 lines
246 B
Nix
{ pkgs, ... }@all: with all;
|
|
lib.mkIf (hyper.host == "NxNORTH" || hyper.host == "NxACE")
|
|
{
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
};
|
|
gamemode = {
|
|
enable = true;
|
|
};
|
|
gamescope = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|