{ pkgs, config, ... }: { imports = [ ./fzf.nix ./multiplexers.nix ./nix.nix ./nix-ld.nix ./zsh.nix ]; environment.systemPackages = with pkgs; [ bat fd file gnupg glow htop irssi killall neovim ripgrep tealdeer traceroute tcpdump tree (aspellWithDicts ( ps: with ps; [ en en-science en-computers ru nl ] )) exfatprogs nmap bind lf man-pages unzip usbutils pciutils ouch cryptsetup sshfs whois mtr joshuto ] ++ ( if config.networking.hostName == "toaster" then [ gitFull git-lfs ] else [ git ] ); environment.variables = { PAGER = "less"; LESS = "-X -R -F"; }; environment.shellAliases = { vim = "nvim"; grep = "grep --color=auto"; e = "emacseditor -c -n"; }; programs.iftop.enable = true; programs.mosh.enable = true; }