forked from Fediversity/Fediversity
22 lines
368 B
Nix
22 lines
368 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkOption;
|
||
|
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
procolixVm = {
|
||
|
name = mkOption { };
|
||
|
host = mkOption { };
|
||
|
|
||
|
hostPublicKey = mkOption {
|
||
|
description = ''
|
||
|
The host public key of the machine. It is used in particular
|
||
|
to filter Age secrets and only keep the relevant ones.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|