nichts/hosts/vali/mars/programs.nix

76 lines
1.6 KiB
Nix
Raw Normal View History

2024-04-10 17:39:26 +02:00
{ config, inputs, pkgs, ... }:
let
2024-04-13 00:15:21 +02:00
fenix = inputs.fenix.packages.${pkgs.system};
2024-04-10 19:21:46 +02:00
in {
2024-04-13 00:15:21 +02:00
environment.systemPackages = with pkgs; [
2024-04-10 22:17:12 +02:00
alacritty
2024-04-12 16:20:03 +02:00
alsa-utils
asciinema
betterbird
2024-04-10 17:39:26 +02:00
bibata-cursors
dig
2024-04-12 20:45:33 +02:00
easyeffects
2024-04-12 16:20:03 +02:00
element-desktop
2024-04-12 20:45:33 +02:00
eza
2024-04-12 16:20:03 +02:00
fastfetch
2024-04-10 17:39:26 +02:00
(fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
2024-04-12 16:20:03 +02:00
ffmpeg_6-full
2024-04-12 22:58:01 +02:00
flameshot
foot
2024-04-12 16:20:03 +02:00
gcc
2024-04-10 17:39:26 +02:00
gdb
grimblast
2024-04-12 16:20:03 +02:00
git
httpie
imagemagick
keepassxc
2024-04-10 17:39:26 +02:00
krita
2024-04-12 16:20:03 +02:00
lazygit
libreoffice-fresh
2024-04-13 00:56:24 +02:00
moc
2024-04-13 00:15:21 +02:00
ncmpcpp
2024-04-12 16:20:03 +02:00
neofetch
neovim
networkmanagerapplet
2024-04-12 20:45:33 +02:00
nextcloud-client
2024-04-12 16:20:03 +02:00
pamixer
pavucontrol
pcmanfm
pfetch
2024-04-13 00:15:21 +02:00
playerctl
2024-04-12 16:20:03 +02:00
polkit
2024-04-10 17:39:26 +02:00
python3
2024-04-12 16:20:03 +02:00
qbittorrent
2024-04-13 00:15:21 +02:00
ripgrep
2024-04-10 17:39:26 +02:00
rustdesk
2024-04-12 21:36:26 +02:00
rofi
2024-04-12 16:20:03 +02:00
scc
2024-04-10 17:39:26 +02:00
sherlock
2024-04-12 16:20:03 +02:00
signal-desktop-beta
smartmontools
2024-04-13 00:15:21 +02:00
spotube
2024-04-12 16:20:03 +02:00
st
steam
telegram-desktop
texliveFull
2024-04-12 19:45:13 +02:00
thunderbird
2024-04-12 16:20:03 +02:00
tor-browser-bundle-bin
trash-cli
tree
unzip
ventoy-full
2024-04-12 20:24:19 +02:00
vesktop
2024-04-12 16:20:03 +02:00
vlc
xclip
yt-dlp
zathura
zip
2024-04-10 17:39:26 +02:00
];
2024-04-10 19:21:46 +02:00
}