desktop changes

This commit is contained in:
2025-03-15 11:29:54 -04:00
parent 32bea7a44c
commit 31e73bb3d1
4 changed files with 43 additions and 26 deletions

27
etcnixos/steam.nix Normal file
View File

@@ -0,0 +1,27 @@
{
pkgs,
config,
lib,
...
}:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
programs.steam = {
enable = true;
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
environment.systemPackages = with pkgs; [
steamtinkerlaunch
];
}