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,16 +1,16 @@
{
config,
inputs,
lib,
pkgs,
...
}: let
inherit (config.poz.other.system) username;
inherit (lib.attrsets) attrValues;
in {
home-manager.users.${username} = {
home.packages = let
hyprcontrib = inputs.hyprcontrib.packages.${pkgs.system};
shadower = inputs.shadower.packages.${pkgs.system};
in with pkgs; [
home.packages = attrValues {
inherit (pkgs)
keepassxc
eza
ripgrep
@ -26,12 +26,7 @@ in {
qbittorrent
zellij
trash-cli
wl-clipboard
xdg-utils
hyprpicker
hyprcontrib.hyprprop
hyprcontrib.grimblast
shadower.shadower
pamixer
brightnessctl
dig
@ -67,22 +62,16 @@ in {
xdg-user-dirs
lshw
tree
ydotool
exiv2
config.boot.kernelPackages.cpupower
config.boot.kernelPackages.perf
usbutils
gomuks
ytfzf
mat2
libsixel
lsix
qmk
wev
httpie
mangohud
nix-index
xdg-ninja
heaptrack
magic-wormhole
webcamoid
@ -100,6 +89,11 @@ in {
teams-for-linux
openconnect
vpn-slice
];
;
inherit (config.boot.kernelPackages)
cpupower
perf
;
};
};
}