nixos-config/homes/common/packages.nix
Ingolf Wagner 51e3d8df22
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m13s
📦 add network packages
2024-09-04 16:32:40 +07:00

67 lines
936 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
'')
];
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
];
})
];
}