25 lines
580 B
Nix
25 lines
580 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Add this module's pinned applications
|
|
desktop.plasma.pinnedApps = [
|
|
"steam.desktop" # Steam gaming platform
|
|
"discord.desktop" # Gaming communication
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
discord # Gaming communication
|
|
# parsec-bin
|
|
# bottles
|
|
];
|
|
|
|
# Steam
|
|
programs.steam = with pkgs; {
|
|
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
|
|
};
|
|
|
|
|
|
|
|
}
|