46 lines
974 B
Nix
46 lines
974 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (config.poz.other.system) username;
|
|
|
|
inherit (lib.attrsets) attrValues;
|
|
in {
|
|
home-manager.users.${username} = {
|
|
home.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
|
|
;
|
|
};
|
|
};
|
|
}
|