nixos-old/programs.nix

15 lines
416 B
Nix
Raw Permalink Normal View History

2023-04-17 12:53:07 +00:00
{ pkgs, ... }: {
2023-07-29 12:41:41 +00:00
programs.file-roller.enable = true;
2022-11-05 11:15:01 +00:00
programs.steam = {
enable = true;
2023-04-17 12:53:07 +00:00
remotePlay.openFirewall =
true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall =
true; # Open ports in the firewall for Source Dedicated Server
};
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
2022-11-05 11:15:01 +00:00
};
}