49 lines
897 B
Nix
49 lines
897 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
username = config.myOptions.other.system.username;
|
|
in {
|
|
home-manager.users.${username} = {
|
|
home.packages = with pkgs; [
|
|
git
|
|
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
|
|
];
|
|
};
|
|
}
|
|
|