This commit is contained in:
reym 2026-04-29 02:12:44 +02:00
commit 53f5850a3d
6 changed files with 256 additions and 0 deletions

138
configuration.nix Normal file
View file

@ -0,0 +1,138 @@
{
config,
pkgs,
lib,
...
}:
let
# CHANGE THESE
domain = "git.example.com";
acmeEmail = "you@example.com";
sshKeys = [
"ssh-ed25519 AAAA...replace-with-your-public-key... user@host"
];
in
{
# ─── Boot ──────────────────────────────────────────────────────────
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# ─── Networking ────────────────────────────────────────────────────
networking.hostName = "garp";
networking.useDHCP = lib.mkDefault true;
networking.firewall.allowedTCPPorts = [
22
80
443
];
time.timeZone = "UTC";
nix = {
settings.experimental-features = [
"nix-command"
"flakes"
];
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
};
services.xserver.xkb = {
layout = "de";
};
console.keyMap = "de";
# SSH (needed for nixos-anywhere and later rebuilds)
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
};
};
users.users.root.openssh.authorizedKeys.keys = sshKeys;
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
# Native module (not Docker) — gets proper systemd units, log
# integration, and works with services.forgejo.dump for backups.
services.forgejo = {
enable = true;
database.type = "sqlite3";
settings = {
server = {
DOMAIN = domain;
ROOT_URL = "https://${domain}/";
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3000;
};
service.DISABLE_REGISTRATION = true;
session.COOKIE_SECURE = true;
log.LEVEL = "Warn";
};
};
services.caddy = {
enable = true;
email = acmeEmail;
virtualHosts.${domain}.extraConfig = ''
reverse_proxy 127.0.0.1:3000
'';
};
environment.systemPackages = with pkgs; [
git
neovim
btop
tmux
curl
];
# VM-only overrides (applied by `nixos-rebuild build-vm`)
virtualisation.vmVariant = {
virtualisation = {
memorySize = 2048;
cores = 2;
forwardPorts = [
{
from = "host";
host.port = 2222;
guest.port = 22;
}
{
from = "host";
host.port = 3000;
guest.port = 3000;
}
{
from = "host";
host.port = 8080;
guest.port = 80;
}
];
};
# Reach Forgejo from the host via the forwarded port
services.forgejo.settings.server.HTTP_ADDR = lib.mkForce "0.0.0.0";
# Caddy without TLS in the VM (no real DNS / ACME)
services.caddy.virtualHosts = lib.mkForce {
":80".extraConfig = ''
reverse_proxy 127.0.0.1:3000
'';
};
# Easy SSH into the VM for poking around
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
services.openssh.settings.PasswordAuthentication = lib.mkForce true;
users.users.root.password = lib.mkForce "test";
};
system.stateVersion = "25.11";
}