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