update work machine packages not to use with
more cleanup too
This commit is contained in:
parent
2bb42e6636
commit
f557a899c1
1 changed files with 89 additions and 83 deletions
|
@ -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
|
||||
;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue