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