forked from fediversity/fediversity
rename module to caller
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
This commit is contained in:
parent
7ee1422f2b
commit
30f15835c1
1 changed files with 4 additions and 5 deletions
|
|
@ -422,9 +422,8 @@ let
|
||||||
};
|
};
|
||||||
inherit nixos-configuration;
|
inherit nixos-configuration;
|
||||||
ssh = host-ssh;
|
ssh = host-ssh;
|
||||||
# TODO: add proxmox info
|
caller = mkOption {
|
||||||
module = mkOption {
|
description = "The calling module to obtain the NixOS configuration from.";
|
||||||
description = "The module to call to obtain the NixOS configuration from.";
|
|
||||||
type = types.str;
|
type = types.str;
|
||||||
};
|
};
|
||||||
args = mkOption {
|
args = mkOption {
|
||||||
|
|
@ -506,7 +505,7 @@ let
|
||||||
inherit (tf-host.config)
|
inherit (tf-host.config)
|
||||||
system
|
system
|
||||||
ssh
|
ssh
|
||||||
module
|
caller
|
||||||
args
|
args
|
||||||
deployment-name
|
deployment-name
|
||||||
httpBackend
|
httpBackend
|
||||||
|
|
@ -533,7 +532,7 @@ let
|
||||||
nixos_conf = writeConfig {
|
nixos_conf = writeConfig {
|
||||||
inherit
|
inherit
|
||||||
system
|
system
|
||||||
module
|
caller
|
||||||
args
|
args
|
||||||
deployment-name
|
deployment-name
|
||||||
root-path
|
root-path
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue