Compare commits

...

2 commits

Author SHA1 Message Date
f557a899c1
update work machine packages not to use with
more cleanup too
2024-08-29 14:49:57 +02:00
2bb42e6636
cleanup work machine packages 2024-08-29 14:48:46 +02:00

View file

@ -1,105 +1,99 @@
{ {
config, config,
inputs, lib,
pkgs, pkgs,
... ...
}: let }: let
inherit (config.poz.other.system) username; inherit (config.poz.other.system) username;
inherit (lib.attrsets) attrValues;
in { in {
home-manager.users.${username} = { home-manager.users.${username} = {
home.packages = let home.packages = attrValues {
hyprcontrib = inputs.hyprcontrib.packages.${pkgs.system}; inherit (pkgs)
shadower = inputs.shadower.packages.${pkgs.system}; keepassxc
in with pkgs; [ eza
keepassxc ripgrep
eza obs-studio
ripgrep ungoogled-chromium
obs-studio tor-browser-bundle-bin
ungoogled-chromium mullvad-browser
tor-browser-bundle-bin thunderbird
mullvad-browser gimp
thunderbird helvum
gimp easyeffects
helvum libreoffice-fresh
easyeffects qbittorrent
libreoffice-fresh zellij
qbittorrent trash-cli
zellij xdg-utils
trash-cli pamixer
wl-clipboard brightnessctl
xdg-utils dig
hyprpicker imv
hyprcontrib.hyprprop pcmanfm
hyprcontrib.grimblast xdg-ninja
shadower.shadower gnupg
pamixer age
brightnessctl rage
dig fd
imv udisks
pcmanfm ffmpeg_6-full
xdg-ninja yt-dlp
gnupg filelight
age asciinema
rage asciinema-agg
fd du-dust
udisks appimage-run
ffmpeg_6-full file
yt-dlp fastfetch
filelight uutils-coreutils
asciinema alsa-utils
asciinema-agg imagemagick
du-dust psmisc
appimage-run mesa-demos
file jq
fastfetch fq
uutils-coreutils progress
alsa-utils parallel
imagemagick p7zip
psmisc xxd
mesa-demos playerctl
jq xdg-user-dirs
fq lshw
progress tree
parallel exiv2
p7zip usbutils
xxd ytfzf
playerctl mat2
xdg-user-dirs libsixel
lshw lsix
tree qmk
ydotool httpie
exiv2 mangohud
config.boot.kernelPackages.cpupower nix-index
config.boot.kernelPackages.perf heaptrack
usbutils magic-wormhole
gomuks webcamoid
ytfzf fswebcam
mat2 pciutils
libsixel inxi
lsix pcsc-tools
qmk libnfc
wev nix-tree
httpie duf
mangohud bat
nix-index hw-probe
xdg-ninja delta
heaptrack scrcpy
magic-wormhole teams-for-linux
webcamoid openconnect
fswebcam vpn-slice
pciutils ;
inxi inherit (config.boot.kernelPackages)
pcsc-tools cpupower
libnfc perf
nix-tree ;
duf };
bat
hw-probe
delta
scrcpy
teams-for-linux
openconnect
vpn-slice
];
}; };
} }