nixos/nixos/hosts/git/default.nix
2024-03-30 23:11:28 -04:00

20 lines
415 B
Nix

{ ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
../../features/telemetry
];
networking.hostName = "git";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
service.forgejo = {
enable = true;
settings.server = {
DOMAIN = "git.foxxolay.com";
ROOT_URL = "https://git.foxxolay.com";
};
};
}