niksos/hosts/hape/programs.nix

80 lines
1.8 KiB
Nix
Raw Normal View History

2024-07-15 23:18:25 +02:00
{
config,
lib,
2024-07-15 23:18:25 +02:00
pkgs,
...
}: let
2024-08-06 17:52:50 +02:00
inherit (config.poz.other.system) username;
inherit (lib.attrsets) attrValues;
2024-07-15 23:18:25 +02:00
in {
home-manager.users.${username} = {
home.packages = attrValues {
inherit (pkgs)
keepassxc
eza
ripgrep
signal-desktop-beta
element-desktop
obs-studio
heroic
ungoogled-chromium
tor-browser-bundle-bin
mullvad-browser
thunderbird
gimp
easyeffects
libreoffice-fresh
qbittorrent
zellij
unzip
caprine-bin
trash-cli
networkmanagerapplet
xdg-utils
pamixer
brightnessctl
dig
imv
pcmanfm
xdg-ninja
gnupg
age
rage
fd
udisks
ffmpeg_6-full
yt-dlp
filelight
asciinema
asciinema-agg
du-dust
appimage-run
file
fastfetch
magic-wormhole
alsa-utils
imagemagick
psmisc
mesa-demos
jq
fq
progress
parallel
p7zip
xxd
mpc-cli
playerctl
xdg-user-dirs
lshw
tree
exiv2
;
inherit (config.boot.kernelPackages)
cpupower
perf
;
};
2024-07-15 23:18:25 +02:00
};
}