nixos-config/nixos/homes/common/packages.nix
2024-04-01 16:20:19 +02:00

60 lines
793 B
Nix

{ config, pkgs, lib, ... }:
with pkgs;
with lib;
{
config = mkMerge [
{
home.packages = [
bind.dnsutils
nmap
hexyl
ipcalc
units
parallel
wget
curl
gimoji
# todo : configure this properly
tldr
bandwhich
unzip
genpass
tree
killall
nix-tree
];
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
sxiv
gimp
inkscape
transmission-remote-gtk
];
})
];
}