Compare commits

..

No commits in common. "e9adff9c686b5df7ea1b28d5dd0b4d0bdb8492fe" and "d03c0990e8397b2479748f1b8d6dc55d4658d5de" have entirely different histories.

3 changed files with 1 additions and 19 deletions

View file

@ -1,4 +1,4 @@
{config, pkgs, ...}:
{config, pkgs}:
{

View file

@ -7,7 +7,6 @@
./flatpak.nix
./discord.nix
./ollama.nix
./steam.nix
];
}

View file

@ -1,17 +0,0 @@
{config, pkgs, lib, ...}:
{
programs.gamemode.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-unwrapped"
"steam-original"
"steam-run"
];
}