add forgejo-runner on forgejo vm

This commit is contained in:
Vinzenz Schroeter 2025-02-01 16:06:36 +01:00
parent 28f2315ede
commit c9f4e9ac56

View file

@ -11,8 +11,8 @@ nixpkgs.lib.nixosSystem {
}
{
services.tailscale.useRoutingFeatures = "both";
}
{
system.autoUpgrade.allowReboot = true;
users.users = {
root.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCJUpbpB3KEKVoKWsKoar9J4RNah8gmQoSH6jQEw5dY vinzenz-pixel-JuiceSSH''
@ -20,9 +20,10 @@ nixpkgs.lib.nixosSystem {
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPDNpLDmctyqGpow/ElQvdhY4BLBPS/sigDJ1QEcC7wC vinzenz-lpt2-roaming''
];
};
}
{
system.autoUpgrade.allowReboot = true;
environment.systemPackages = with nixpkgs; [
forgejo-runner
];
}
];
}