24 lines
557 B
Nix
24 lines
557 B
Nix
{ 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";
|
|
}
|