aboutsummaryrefslogtreecommitdiff
path: root/modules/host-config.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2026-01-09 17:04:21 -0800
committerFranck Cuny <franck@fcuny.net>2026-01-12 08:20:24 -0800
commitc0317720b30a0827aa7841655196953ab0a09605 (patch)
tree75221d73442593a2d55f2dba5c9aac06f714f6eb /modules/host-config.nix
parentinstall 1password cli (diff)
downloadinfra-c0317720b30a0827aa7841655196953ab0a09605.tar.gz
add a publicKey options for nixos machines
Diffstat (limited to 'modules/host-config.nix')
-rw-r--r--modules/host-config.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/host-config.nix b/modules/host-config.nix
index 7aa4ecb..92d8eea 100644
--- a/modules/host-config.nix
+++ b/modules/host-config.nix
@@ -9,5 +9,9 @@
type = lib.types.nullOr lib.types.str;
default = null;
};
+ publicKey = lib.mkOption {
+ type = lib.types.str;
+ default = "xxxx";
+ };
};
}