fix(flake)!: correctly set agenix-rekey
hostPubkey
- `meta ? pubkey` was valid before going with the modules strategy - Now `pubkey` is always defined and set to `null` by default
This commit is contained in:
parent
52d28e5001
commit
ee8d85a568
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ let
|
|||
# (r)agenix && agenix-rekey
|
||||
inputs.ragenix.nixosModules.default
|
||||
inputs.agenix-rekey.nixosModules.default
|
||||
(lib.optionalAttrs (meta ? pubkey) {
|
||||
(lib.optionalAttrs (meta.pubkey != null) {
|
||||
age.rekey.hostPubkey = meta.pubkey;
|
||||
})
|
||||
./agenix-rekey
|
||||
|
|
Loading…
Reference in a new issue