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,
|
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
|
||||||
|
;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue