dea-files/groups/yezelhlev/programs.nix

72 lines
1.5 KiB
Nix
Raw Normal View History

2026-03-07 13:08:30 +10:00
{upkgs, ...}: {
# ======================
# List packages installed in system profile. To search, run:
# $ nix search wget
# nixos-rebuild switch --use-remote-sudo
# ======================
# Update packages?:
# sudo nix-channel --update
# sudo nixos-rebuild switch
# ======================
# sudo nixos-rebuild switch --flake .
environment.systemPackages = with upkgs; [
2026-03-07 12:07:16 -05:00
# CLI tools
git
2026-04-13 00:13:59 -04:00
lazygit
2026-03-07 13:08:30 +10:00
wget
unzip
2026-03-07 12:07:16 -05:00
p7zip
kitty # terminal
starship # shell customizer
btop-cuda # system monitoring
croc # e2ee file transfer
2026-03-07 13:08:30 +10:00
chawan # tui browser cha <url>
2026-03-07 12:07:16 -05:00
shellcheck # sh warning
2026-03-07 12:08:23 -05:00
calcure # calendar app TODO: remove & fork calendar.vim
2026-03-07 12:07:16 -05:00
# editors
lunarvim
vscode
# languages
2026-03-07 13:08:30 +10:00
gcc
gdb
glibc.static
2026-03-07 12:07:16 -05:00
python3
2026-03-07 13:08:30 +10:00
nixfmt
2026-03-07 12:07:16 -05:00
# window management
2026-03-07 13:08:30 +10:00
wayland
2026-04-13 00:13:59 -04:00
waywall
pipewire
2026-03-07 13:08:30 +10:00
2026-03-07 12:07:16 -05:00
# programs
2026-03-09 11:42:03 -04:00
vivaldi # TODO: switch to zen later
2026-03-07 13:08:30 +10:00
vesktop # discord-canary
equibop # equibop 3.1.7
2026-03-07 12:07:16 -05:00
element-desktop # element 4 matrix
monophony # yt music tryout
syncplay
qbittorrent
2026-03-07 13:08:30 +10:00
libreoffice-qt # libreoffice
notepad-next # notepad++
2026-03-07 12:07:16 -05:00
# notepadqq # TODO: which is better?
2026-03-07 13:08:30 +10:00
sqlitebrowser
bottles # windows emulation
2026-03-07 12:07:16 -05:00
# dependencies
qt5.qtbase # vivaldi + others
2026-03-07 13:08:30 +10:00
libsForQt5.qtstyleplugin-kvantum # libs for Qt5
libsForQt5.qt5ct
libsForQt5.qt5.qtbase
2026-03-07 12:07:16 -05:00
hunspell # spellcheck for libreoffice
hunspellDicts.uk_UA
hunspellDicts.th_TH
openjdk
ffmpeg-full # mpv + syncplay
yt-dlp
2026-03-07 13:08:30 +10:00
];
}