Added packages.nix

This commit is contained in:
2025-05-05 23:00:24 +02:00
parent ff07a08b78
commit 20ddcd892a

65
modules/packages.nix Normal file
View File

@@ -0,0 +1,65 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# CLI utils
appimage-run
btop
busybox
distrobox
docker
fish
fzf
git
gnumake
htop
jq
killall
md2pdf
nmap
python3
ripgrep
tree
unzip
wget
wl-clipboard
xdotool
xorg.xwininfo
yad
zip
zoxide
zulu
# Man pages
man-pages
vim # The only and one great editor
# neovim # The only and one great editor improved even further
# Video card
vulkan-tools
# Gaming
dolphin-emu
heroic
mangohud
prismlauncher
steam
vesktop
# GUI applications
baobab
brave
kdePackages.xdg-desktop-portal-kde
kitty
libresprite
mpv
nextcloud-client
spotube
telegram-desktop
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
}