nixos-config/config/server.nix

14 lines
297 B
Nix

# Configuration unique to servers
{pkgs, ...}: {
imports = [
./services/nginx.nix
./services/acme.nix
./services/fail2ban.nix
./services/initrd-ssh.nix
];
environment.systemPackages = with pkgs; [
pinentry-curses
];
programs.gnupg.agent.pinentryFlavor = "curses";
}