nixos-config/homes/common/packages.nix

66 lines
935 B
Nix

{ config, pkgs, lib, ... }:
with pkgs;
with lib;
{
config = mkMerge [
{
home.packages = [
bind.dnsutils
nmap
hexyl
ipcalc
units
difftastic
parallel
progress
wget
curl
gimoji
tldr
bandwhich
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
sxiv
gimp
inkscape
transmission-remote-gtk
];
})
];
}