forked from Fediversity/Fediversity
pass in description fix syntax configure proxmox provider typo add doc comment in existing modules add comment allow insecure proxmox connection for use in dev wip proxmox progress use service configurations moved to machine-independent location wire settings directly without option block terraform adjust cwd try tf on null input update .envrc.sample with sample proxmox credentials
71 lines
1.8 KiB
Nix
71 lines
1.8 KiB
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption;
|
|
|
|
in
|
|
{
|
|
options.fediversityVm = {
|
|
|
|
##########################################################################
|
|
## Networking
|
|
|
|
domain = mkOption {
|
|
description = ''
|
|
The domain hosting the machine. Most of the time, this will be either of
|
|
`procolix.com`, `fediversity.eu` or `abundos.eu`.
|
|
'';
|
|
default = "procolix.com";
|
|
};
|
|
|
|
ipv4 = {
|
|
address = mkOption {
|
|
description = ''
|
|
The IP address of the machine, version 4. It will be injected as a
|
|
value in `networking.interfaces.eth0`, but it will also be used to
|
|
communicate with the machine.
|
|
'';
|
|
};
|
|
|
|
prefixLength = mkOption {
|
|
description = ''
|
|
The subnet mask of the interface, specified as the number of bits in
|
|
the prefix.
|
|
'';
|
|
default = 24;
|
|
};
|
|
|
|
gateway = mkOption {
|
|
description = ''
|
|
The IP address of the default gateway.
|
|
'';
|
|
default = "185.206.232.1"; # FIXME: compute default from `address` and `prefixLength`.
|
|
};
|
|
};
|
|
|
|
ipv6 = {
|
|
address = mkOption {
|
|
description = ''
|
|
The IP address of the machine, version 6. It will be injected as a
|
|
value in `networking.interfaces.eth0`, but it will also be used to
|
|
communicate with the machine.
|
|
'';
|
|
};
|
|
|
|
prefixLength = mkOption {
|
|
description = ''
|
|
The subnet mask of the interface, specified as the number of bits in
|
|
the prefix.
|
|
'';
|
|
default = 64;
|
|
};
|
|
|
|
gateway = mkOption {
|
|
description = ''
|
|
The IP address of the default gateway.
|
|
'';
|
|
default = "2a00:51c0:12:1201::1"; # FIXME: compute default from `address` and `prefixLength`.
|
|
};
|
|
};
|
|
};
|
|
}
|