update work machine packages not to use with

more cleanup too
This commit is contained in:
work 2024-08-29 14:49:57 +02:00
parent 2bb42e6636
commit f557a899c1
Signed by: work
SSH key fingerprint: SHA256:EkJKXioMMuAy1HJWpXOvEvwm2AfE/1LMG+v4/SzKdqA

View file

@ -1,12 +1,16 @@
{ {
config, config,
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 = with pkgs; [ home.packages = attrValues {
inherit (pkgs)
keepassxc keepassxc
eza eza
ripgrep ripgrep
@ -59,8 +63,6 @@ in {
lshw lshw
tree tree
exiv2 exiv2
config.boot.kernelPackages.cpupower
config.boot.kernelPackages.perf
usbutils usbutils
ytfzf ytfzf
mat2 mat2
@ -70,7 +72,6 @@ in {
httpie httpie
mangohud mangohud
nix-index nix-index
xdg-ninja
heaptrack heaptrack
magic-wormhole magic-wormhole
webcamoid webcamoid
@ -88,6 +89,11 @@ in {
teams-for-linux teams-for-linux
openconnect openconnect
vpn-slice vpn-slice
]; ;
inherit (config.boot.kernelPackages)
cpupower
perf
;
};
}; };
} }