niksos/hosts/chmura/programs.nix
2024-10-13 23:12:50 +02:00

44 lines
812 B
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (config.poz.other.system) username;
inherit (lib.attrsets) attrValues;
in {
users.users.${username}.packages = attrValues {
inherit (pkgs)
eza
ripgrep
unzip
trash-cli
dig
xdg-ninja
gnupg
age
fd
asciinema
asciinema-agg
dust
file
magic-wormhole
uutils-coreutils
imagemagick
psmisc
jq
fq
progress
parallel
p7zip
xxd
lshw
tree
smartmontools
curl
fastfetch
wireguard-tools
;
};
}