{ config, lib, pkgs, ... }: { # Let Home Manager install and manage itself. programs.home-manager.enable = true; manual = { html.enable = true; }; home.sessionVariables.EMAIL = "alan@alanpearce.eu"; home.packages = with pkgs; [ pv fd sd entr file ripgrep htop lsof iftop nmap moreutils mtr tree zip telnet ] ++ ( if !stdenv.isDarwin then [ vim unar ] else [ ]); }