rename plusultra to metacfg
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
parent
b22607a4df
commit
04f08d679e
48 changed files with 149 additions and 149 deletions
|
@ -1,11 +1,11 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.base;
|
||||
with lib.metacfg;
|
||||
let cfg = config.metacfg.base;
|
||||
in
|
||||
{
|
||||
options.plusultra.base = with types; {
|
||||
options.metacfg.base = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable the base config.";
|
||||
|
||||
};
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.gui;
|
||||
with lib.metacfg;
|
||||
let cfg = config.metacfg.gui;
|
||||
in
|
||||
{
|
||||
options.plusultra.gui = with types; {
|
||||
options.metacfg.gui = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable a GUI.";
|
||||
};
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.podman;
|
||||
with lib.metacfg;
|
||||
let cfg = config.metacfg.podman;
|
||||
in
|
||||
{
|
||||
options.plusultra.podman = with types; {
|
||||
options.metacfg.podman = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable podman.";
|
||||
};
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.secureboot;
|
||||
with lib.metacfg;
|
||||
let cfg = config.metacfg.secureboot;
|
||||
in
|
||||
{
|
||||
options.plusultra.secureboot = with types; {
|
||||
options.metacfg.secureboot = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable secureboot.";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue