17 lines
269 B
Nix
17 lines
269 B
Nix
{ pkgs, hyper, ... }:
|
|
# lib.mkIf (host == "NxNORTH" || host == "NxACE")
|
|
pkgs.lib.mkIf (hyper.host == "NxNORTH")
|
|
{
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
};
|
|
gamemode = {
|
|
enable = true;
|
|
};
|
|
gamescope = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|