117 lines
2.7 KiB
Nix
117 lines
2.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (config.poz.other.system) username;
|
|
|
|
inherit (lib.attrsets) attrValues;
|
|
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
|
|
prismlauncher
|
|
qbittorrent
|
|
zellij
|
|
caprine-bin
|
|
trash-cli
|
|
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
|
|
uutils-coreutils
|
|
anki
|
|
alsa-utils
|
|
ezquake
|
|
imagemagick
|
|
psmisc
|
|
mesa-demos
|
|
aseprite-unfree
|
|
jq
|
|
fq
|
|
progress
|
|
parallel
|
|
p7zip
|
|
xxd
|
|
mpc-cli
|
|
playerctl
|
|
xdg-user-dirs
|
|
lshw
|
|
tree
|
|
exiv2
|
|
krita
|
|
usbutils
|
|
kiwix
|
|
inkscape
|
|
gomuks
|
|
twitch-tui
|
|
ytfzf
|
|
mat2
|
|
simplex-chat-desktop
|
|
libsixel
|
|
lsix
|
|
qmk
|
|
enigma
|
|
superTuxKart
|
|
solaar
|
|
httpie
|
|
mangohud
|
|
nix-index
|
|
heaptrack
|
|
magic-wormhole
|
|
sherlock
|
|
inxi
|
|
nix-tree
|
|
pciutils
|
|
duf
|
|
bat
|
|
rnote
|
|
hw-probe
|
|
zed-editor
|
|
osu-lazer-bin
|
|
delta
|
|
scrcpy
|
|
godot_4
|
|
;
|
|
inherit (pkgs.libsForQt5)
|
|
kdenlive
|
|
;
|
|
inherit (config.boot.kernelPackages)
|
|
cpupower
|
|
perf
|
|
;
|
|
};
|
|
};
|
|
}
|