feat: add panam host for forgejo instance

This commit is contained in:
Alexander Wainwright 2026-04-09 21:54:25 +10:00
parent 2af088e966
commit 3b56a51634
4 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,24 @@
{ config, modulesPath, pkgs, inputs, ... }:
{
imports =
[
(modulesPath + "/virtualisation/proxmox-lxc.nix")
../modules/base.nix
../modules/server.nix
./forgejo.nix
];
nix.settings = { sandbox = false; };
proxmoxLXC = {
manageNetwork = false;
privileged = true;
};
networking.hostName = "panam";
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken.
system.stateVersion = "25.05";
}