{ pkgs, ... }: { environment.systemPackages = with pkgs; [ exa fd gitAndTools.gitFull glow jq manpages ripgrep rlwrap clojure gcc guile julia-stable-bin lua python3 rakudo zig bintools gdb gnumake leiningen pkg-config python38Packages.pip groff plantuml texlive.combined.scheme-full ]; programs.mtr.enable = true; programs.gnupg.agent = { enable = true; enableSSHSupport = true; }; services = { # openssh.enable = true; ipfs = { enable = true; dataDir = "/data/IPFS"; }; postgresql = { enable = true; enableTCPIP = true; authentication = pkgs.lib.mkOverride 10 '' local all all trust host all all ::1/128 trust host all all 127.0.0.1/32 password ''; }; }; }