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,13 +2,13 @@
let
inherit (lib) types mkEnableOption mkIf;
inherit (lib.plusultra) mkOpt enabled;
inherit (lib.metacfg) mkOpt enabled;
cfg = config.plusultra.tools.git;
user = config.plusultra.user;
cfg = config.metacfg.tools.git;
user = config.metacfg.user;
in
{
options.plusultra.tools.git = {
options.metacfg.tools.git = {
enable = mkEnableOption "Git";
userName = mkOpt types.str user.fullName "The name to configure git with.";
userEmail = mkOpt types.str user.email "The email to configure git with.";