nixos/hosts/hypr-nix/packages.nix

218 lines
2.9 KiB
Nix
Raw Normal View History

2025-05-10 22:44:45 +01:00
{ config, pkgs, zen-browser, ... }:
2025-05-10 19:38:58 +01:00
let
unstable = import
(builtins.fetchTarball "channel:nixos-unstable")
{ config = config.nixpkgs.config; };
in
2024-06-05 22:52:59 +01:00
{
environment.systemPackages = with pkgs; [
2025-02-04 01:02:57 +00:00
# Text Editors
vim
sublime
lunarvim
2025-04-27 14:57:50 +01:00
vscode
2025-02-04 01:02:57 +00:00
# Development Tools
2025-04-27 14:57:50 +01:00
openjdk
2025-02-04 01:02:57 +00:00
clang-tools
gcc
cmake
glew
glfw
libGL
2025-05-10 17:02:42 +01:00
sdl3
2025-02-04 01:02:57 +00:00
vulkan-loader
vulkan-tools
vulkan-headers
wayland-protocols
golangci-lint
golangci-lint-langserver
python3
php
php83Packages.composer
exercism
betterdiscord-installer
2025-05-10 17:02:42 +01:00
go
bun
2025-02-04 01:02:57 +00:00
air
tailwindcss
2025-04-27 14:57:50 +01:00
google-cloud-sdk-gce
kubo
hashcat
2025-02-04 01:02:57 +00:00
# Version Control
git
git-lfs
nix-prefetch-git
# Terminals
kitty
alacritty
# Shell Utilities
fish
zsh
curl
wget
tree
fd
fzf
bat
thefuck
tmux
zellij
lolcat
lsd
tldr
# File Management
ranger
_7zz
unrar
zip
unzip
gzip
gvfs
btrfs-progs
nfs-utils
ntfs3g
# System Utilities
htop
2025-04-27 14:57:50 +01:00
vault
2025-02-04 01:02:57 +00:00
btop
amdgpu_top
parted
gparted
xorg.xprop
xorg.xkill
calc
maim
xclip
xdotool
networkmanager_dmenu
virt-manager
networkmanagerapplet
polybarFull
picom
arandr
nitrogen
pywal
ldmtool
2025-04-27 14:57:50 +01:00
smartmontools
gptfdisk
2025-02-04 01:02:57 +00:00
# Window Managers
i3
eww
vesktop
2025-05-10 17:02:42 +01:00
hyprsunset
2025-02-04 01:02:57 +00:00
# Web Browsers
brave
google-chrome
firefox
tor-browser
# Communication
discord
webcord
slack
2025-05-10 16:29:46 +01:00
#telegram-desktop
2025-02-04 01:02:57 +00:00
# Media
vlc
simplescreenrecorder
obs-studio
davinci-resolve-studio
audacity
haruna
# Gaming
mangohud
protonup
protontricks
lutris
bottles
wine
wine64
# Fonts
noto-fonts-color-emoji
twemoji-color-font
catppuccin-kvantum
themechanger
# Backup and Recovery
pika-backup
megasync
# Networking
ngrok
ipmitool
tailscale
remmina
ddev
# Containers and Virtualization
docker
docker-compose
kubectl
terraform
minikube
# Security
onlyoffice-bin
rcon
rconc
monero-gui
# Graphics
spice
spice-gtk
spice-vdagent
# Themes and Customization
2025-05-10 16:56:54 +01:00
#kdePackages.qt6ct
2025-02-04 01:02:57 +00:00
catppuccin-kvantum
# Multimedia Tools
svt-av1
rav1e
libaom
2025-05-10 17:02:42 +01:00
sunshine
2025-02-04 01:02:57 +00:00
# Miscellaneous
fastfetch
betterdiscord-installer
2025-05-10 17:02:42 +01:00
ghostty
2025-02-04 01:02:57 +00:00
guacamole-client
rpi-imager
2025-05-10 16:29:46 +01:00
light
2025-02-04 01:02:57 +00:00
2025-05-10 16:29:46 +01:00
#games
flightgear
minetest
openttd
endless-sky
cataclysm-dda
xonotic
superTux
superTuxKart
airshipper
mindustry-wayland
speed_dreams
simutrans_binaries
modrinth-app
minecraft
nsnake
2025-05-10 16:56:54 +01:00
#kdePackages
kdePackages.dolphin
kdePackages.filelight
kdePackages.kate
2025-05-10 17:03:38 +01:00
kdePackages.falkon
2024-06-05 22:52:59 +01:00
];
}