91 lines
2 KiB
Nix
91 lines
2 KiB
Nix
{ config, inputs, pkgs, ... }:
|
|
let
|
|
fenix = inputs.fenix.packages.${pkgs.system};
|
|
username = config.modules.other.system.username;
|
|
in {
|
|
environment.systemPackages = with pkgs; [
|
|
alacritty
|
|
alsa-utils
|
|
asciinema
|
|
# betterbird
|
|
bibata-cursors
|
|
blanket
|
|
dig
|
|
dmenu
|
|
easyeffects
|
|
element-desktop
|
|
eza
|
|
fastfetch
|
|
feh
|
|
(fenix.complete.withComponents [
|
|
"cargo"
|
|
"clippy"
|
|
"rust-src"
|
|
"rustc"
|
|
"rustfmt"
|
|
])
|
|
ffmpeg_6-full
|
|
flameshot
|
|
foot
|
|
img2pdf
|
|
gcc
|
|
gdb
|
|
gnumake
|
|
grimblast
|
|
git
|
|
httpie
|
|
imagemagick
|
|
keepassxc
|
|
krita
|
|
lazygit
|
|
libreoffice-fresh
|
|
librewolf
|
|
links2
|
|
moc
|
|
ncmpcpp
|
|
neofetch
|
|
neovim
|
|
networkmanagerapplet
|
|
nextcloud-client
|
|
nheko
|
|
pamixer
|
|
pavucontrol
|
|
pcmanfm
|
|
pdfarranger
|
|
pfetch
|
|
playerctl
|
|
polkit
|
|
python3
|
|
qbittorrent
|
|
ripgrep
|
|
rustdesk
|
|
rofi
|
|
scc
|
|
sherlock
|
|
signal-desktop-beta
|
|
smartmontools
|
|
spotube
|
|
steam
|
|
strawberry
|
|
telegram-desktop
|
|
texliveFull
|
|
thunderbird
|
|
tor-browser-bundle-bin
|
|
trash-cli
|
|
tree
|
|
unzip
|
|
ventoy-full
|
|
vesktop
|
|
vlc
|
|
weechat
|
|
wget
|
|
xclip
|
|
xfce.thunar
|
|
xorg.libX11.dev
|
|
xorg.libXft
|
|
xorg.libXinerama
|
|
yt-dlp
|
|
zathura
|
|
zip
|
|
];
|
|
}
|