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