infra/systems/x86_64-linux/axol/default.nix

47 lines
694 B
Nix
Raw Permalink Normal View History

2024-05-07 03:36:54 +00:00
# axol
# 137.184.177.239
2024-05-04 21:20:45 +00:00
{
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/virtualisation/digital-ocean-config.nix")
];
boot.loader.grub.enable = true;
virtualisation.digitalOcean.rebuildFromUserData = false;
networking.firewall.allowedTCPPorts = [
80
443
];
environment.systemPackages = with pkgs; [
neovim
];
auxolotl = {
nix.enable = true;
users.infra.enable = true;
security = {
2024-05-07 03:36:54 +00:00
doas.enable = true;
2024-05-04 21:20:45 +00:00
acme = {
enable = true;
email = "jake.hamilton@hey.com";
};
};
services = {
2024-05-07 03:36:54 +00:00
chat.enable = true;
2024-05-04 21:20:45 +00:00
website.enable = true;
};
};
system.stateVersion = "23.11";
}