niksos/hosts/chmura/programs.nix

48 lines
879 B
Nix
Raw Normal View History

2024-02-29 01:12:02 +01:00
{
config,
pkgs,
...
}: let
2024-04-14 18:49:29 +02:00
inherit (config.myOptions.other.system) username;
2024-02-29 01:12:02 +01:00
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
];
};
}