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

@ -1,11 +1,11 @@
{ options, config, pkgs, lib, ... }:
with lib;
with lib.plusultra;
let cfg = config.plusultra.system.fonts;
with lib.metacfg;
let cfg = config.metacfg.system.fonts;
in
{
options.plusultra.system.fonts = with types; {
options.metacfg.system.fonts = with types; {
enable = mkBoolOpt false "Whether or not to manage fonts.";
fonts = mkOpt (listOf package) [ ] "Custom font packages to install.";
};

View file

@ -1,11 +1,11 @@
{ options, config, pkgs, lib, ... }:
with lib;
with lib.plusultra;
let cfg = config.plusultra.system.interface;
with lib.metacfg;
let cfg = config.metacfg.system.interface;
in
{
options.plusultra.system.interface = with types; {
options.metacfg.system.interface = with types; {
enable = mkEnableOption "macOS interface";
};
@ -24,6 +24,6 @@ in
};
};
plusultra.home.file.".hushlogin".text = "";
metacfg.home.file.".hushlogin".text = "";
};
}