niksos/hosts/chmura/programs.nix
2024-07-16 00:26:09 +02:00

47 lines
879 B
Nix

{
config,
pkgs,
...
}: let
inherit (config.myOptions.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
git-annex
croc
uutils-coreutils
imagemagick
psmisc
nnn
jq
fq
gnumake
gdb
tea
codeberg-cli
progress
parallel
p7zip
xxd
lshw
tree
smartmontools
curl
fastfetch
wireguard-tools
];
};
}