31 lines
420 B
Nix
31 lines
420 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
p = import ../parameters.nix;
|
|
in
|
|
{
|
|
|
|
my = {
|
|
|
|
services.n8n = {
|
|
enable = true;
|
|
proxy.domain = p.domains.public;
|
|
};
|
|
|
|
services.ilpost-addict.enable = true;
|
|
|
|
utils = {
|
|
commons.enable = true;
|
|
commons.gc.enable = true;
|
|
lxc-standard.enable = true;
|
|
};
|
|
|
|
virtualisation.proxmox.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|