nixos-config/config/server.nix

14 lines
292 B
Nix
Raw Normal View History

2022-01-14 13:03:14 +00:00
# Configuration unique to servers
2022-08-14 18:09:04 +00:00
{pkgs, ...}: {
2022-01-14 19:47:44 +00:00
imports = [
2022-08-26 15:28:14 +00:00
./services/caddy
2022-01-14 20:06:22 +00:00
./services/acme.nix
2022-01-15 11:57:44 +00:00
./services/fail2ban.nix
2022-04-24 08:43:50 +00:00
./services/initrd-ssh.nix
2022-01-14 19:47:44 +00:00
];
2022-08-14 18:09:04 +00:00
environment.systemPackages = with pkgs; [
pinentry-curses
];
programs.gnupg.agent.pinentryFlavor = "curses";
2022-01-14 19:47:44 +00:00
}