- Remove incorrect 'applications:' prefix from desktop file names - All modules now use correct format (e.g., 'steam.desktop' not 'applications:steam.desktop') - Fixed modules: gaming.nix, office.nix, dev.nix, media.nix, dnm.nix - Modular Plasma pinning system now works correctly for all desktop modules - All 14 applications should now appear pinned after Plasma session restart
26 lines
616 B
Nix
26 lines
616 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
|
|
stremio # Media streaming
|
|
# 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
|
|
};
|
|
|
|
|
|
|
|
}
|