nixos-config/system/packages.nix
2025-08-10 18:43:23 -06:00

98 lines
1.8 KiB
Nix
Executable File

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# modrinth-app
gnumake
ansible
niv
sbctl
vim
wget
xournalpp
zathura
obsidian
libreoffice-qt
hunspell
hunspellDicts.en_US
kitty
git
fastfetch
wget
vesktop
discord
cudaPackages_12.cudatoolkit
python3
gimp
vlc
xclip
gparted
htop
btop
dig
# netstat-net-tools
prismlauncher
inetutils
ansible-builder
nix-index
ansible-lint
hollywood
cmatrix
nmap
brave
ffmpeg
variety
fzf
eza
linuxPackages_latest.perf
minicom
wireshark
trash-cli
openssl
tree
screenkey
direnv
jq
nixfmt
unzip
nettools
# Hyprland Ecosystem
hyprpaper
hyprpicker
hyprpolkitagent
hyprsunset
(pkgs.hyprland.override {
enableXWayland = true;
withSystemd = true;
})
# Qt
# kdePackages.qt5compat
# libsForQt5.qt5.qtgraphicaleffects
# libsForQt5.qt5.qtdeclarative
];
programs.nix-ld.enable = true;
programs.thunderbird.enable = true;
# Install noisetorch.
programs.noisetorch.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Install Steam
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
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
# nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
# "steam"
# "steam-original"
# "steam-unwrapped"
# "steam-run"
# ];
}