refactor(sys): systemModules -> ooknet

This commit is contained in:
ooks-io 2024-05-26 17:41:49 +12:00
parent 63c39a89ed
commit 104df464f9
52 changed files with 69 additions and 69 deletions

View file

@ -10,7 +10,7 @@ in
# ./grub
];
options.systemModules.boot.loader = mkOption {
options.ooknet.boot.loader = mkOption {
type = types.enum ["systemd" "grub"];
default = "systemd";
};

View file

@ -2,7 +2,7 @@
let
inherit (lib) mkIf;
bootloader = config.systemModules.boot.loader;
bootloader = config.ooknet.boot.loader;
in
{

View file

@ -2,11 +2,11 @@
let
inherit (lib) mkIf mkEnableOption;
cfg = config.systemModules.boot.plymouth;
cfg = config.sys.boot.plymouth;
in
{
options.systemModules.boot.plymouth.enable = mkEnableOption "";
options.sys.boot.plymouth.enable = mkEnableOption "";
config = mkIf cfg.enable {
boot.plymouth = {