nixos-config/homes/common/packages.nix
Ingolf Wagner e34dc222db
🔧 add glances
2024-10-08 22:56:22 +09:00

70 lines
1,005 B
Nix

{
config,
pkgs,
lib,
...
}:
with pkgs;
with lib;
{
config = mkMerge [
{
home.packages = [
hexyl
units
difftastic
parallel
progress
wget
curl
gimoji
tldr
bandwhich # todo : put this to common/networking.nix
unzip
genpass
tree
killall
nix-tree
vulnix
(writers.writeBashBin "vulnix-system" ''
${vulnix}/bin/vulnix --profile /nix/var/nix/profiles/system
'')
# cpu load monitor
glances
];
# cpu load monitor
programs.btop.enable = true;
}
(mkIf config.gui.enable {
home.packages = [
libreoffice
hunspell
hunspellDicts.de-de
hunspellDicts.en-us
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.es
evince
nsxiv
gimp
inkscape
transmission-remote-gtk
];
})
];
}