niksos/hosts/chmura/programs.nix

42 lines
768 B
Nix
Raw Normal View History

2024-02-29 01:12:02 +01:00
{
config,
pkgs,
...
}: let
2024-07-15 23:18:25 +02:00
inherit (config.poz.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
2024-08-06 18:26:44 +02:00
magic-wormhole
2024-02-29 01:12:02 +01:00
uutils-coreutils
imagemagick
psmisc
jq
fq
progress
parallel
p7zip
xxd
lshw
tree
smartmontools
curl
fastfetch
wireguard-tools
];
};
}