Better organization :')

This commit is contained in:
2026-01-22 14:02:13 -07:00
parent b88b249203
commit cf40ef6794
9 changed files with 124 additions and 81 deletions

28
modules/programs.nix Normal file
View File

@@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
# Enable unfree globally
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
killall
usbutils
pavucontrol
ffmpeg
openssl
qmk-udev-rules
];
# Programs with extra configuration
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraPackages = [ pkgs.jdk ];
};
programs.java.enable = true;
programs.obs-studio.enable = true;
}