rename plusultra to metacfg

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-20 08:58:05 +01:00
parent b22607a4df
commit 04f08d679e
48 changed files with 149 additions and 149 deletions

View file

@ -2,11 +2,11 @@
let
inherit (lib) types mkEnableOption mkIf;
inherit (lib.plusultra) mkOpt;
inherit (lib.metacfg) mkOpt;
cfg = config.plusultra.security.gpg;
gpg = config.plusultra.security.gpg;
user = config.plusultra.user;
cfg = config.metacfg.security.gpg;
gpg = config.metacfg.security.gpg;
user = config.metacfg.user;
gpgConf = "${inputs.gpg-base-conf}/gpg.conf";
gpgAgentConf = ''
@ -43,7 +43,7 @@ let
'';
in
{
options.plusultra.security.gpg = {
options.metacfg.security.gpg = {
enable = mkEnableOption "GPG";
agentTimeout = mkOpt types.int 5 "The amount of time to wait before continuing with shell init.";
};
@ -72,7 +72,7 @@ in
enableSSHSupport = true;
};
plusultra.home.file = {
metacfg.home.file = {
".gnupg/.keep".text = "";
".gnupg/yubikey-guide.md".source = guide;