feat: add panam host for forgejo instance
This commit is contained in:
parent
2af088e966
commit
3b56a51634
4 changed files with 67 additions and 1 deletions
24
hosts/panam/configuration.nix
Normal file
24
hosts/panam/configuration.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue