niksos/hosts/chmura/programs.nix
2024-08-06 18:26:44 +02:00

41 lines
768 B
Nix

{
config,
pkgs,
...
}: let
inherit (config.poz.other.system) username;
in {
home-manager.users.${username} = {
home.packages = with 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
];
};
}