some cnixpad fixes

This commit is contained in:
cnst
2024-09-04 18:26:12 +02:00
parent f531a4b881
commit a00bf4b815
2 changed files with 5 additions and 5 deletions

View File

@@ -19,10 +19,10 @@
++ [ ++ [
./users/cnst ./users/cnst
]; ];
"adam@adampad" = "cnst@cnixpad" =
sharedImports sharedImports
++ [ ++ [
./users/adam ./users/cnst
]; ];
"toothpick@toothpc" = "toothpick@toothpc" =
sharedImports sharedImports

View File

@@ -22,10 +22,10 @@ in {
default = false; default = false;
description = "Apply toothpc agenix settings"; description = "Apply toothpc agenix settings";
}; };
adampad.enable = mkOption { cnixpad.enable = mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
description = "Apply adampad agenix settings"; description = "Apply cnixpad agenix settings";
}; };
}; };
}; };
@@ -43,7 +43,7 @@ in {
# Add toothpc specific secrets here # Add toothpc specific secrets here
}; };
}) })
(mkIf cfg.adampad.enable { (mkIf cfg.cnixpad.enable {
secrets = { secrets = {
# Add adampad specific secrets here # Add adampad specific secrets here
}; };