window switcher

This commit is contained in:
tristan 2023-05-04 15:11:15 +01:00
parent 1c65490076
commit 3c1a415953
2 changed files with 24 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# https://search.nixos.org/options
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
networking.hostName = "zenix";
@ -23,5 +23,18 @@
};
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
# gamer time
"steam"
"steam-run"
"steam-original"
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
}