niksos/hosts/chmura/programs.nix

45 lines
815 B
Nix
Raw Normal View History

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