You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently you have this where I'd have to rely on assertions:
config=mkIf(cfg.secrets!={})(mkMerge[
I currently have to do this to disable agenix:
letcfg=config.repo.common.secrets;ragenix=importinputs.ragenix.nixosModules.default;agenix-rekey=import"${inputs.agenix-rekey}/modules/agenix-rekey.nix"pkgs;in{imports=[# Hacky workaround since the modules don't have enable options({pkgs, ... }@args: ragenixargs//{config=lib.mkIfcfg(ragenixargs).config;})({pkgs, ... }@args: agenix-rekeyargs//{config=lib.mkIfcfg(agenix-rekeyargs).config;})];
Now the reason I need to disable agenix is because I import its module in all hosts in my config repo but live boot images don't have anything I could put into hostPubkey (and it just adds bloat)
Currently you have this where I'd have to rely on assertions:
I currently have to do this to disable agenix:
Now the reason I need to disable agenix is because I import its module in all hosts in my config repo but live boot images don't have anything I could put into hostPubkey (and it just adds bloat)
oddlama/agenix-rekey#72
The text was updated successfully, but these errors were encountered: