modules.services.preload: drop

This commit is contained in:
2025-12-01 16:20:14 +08:00
parent f8a641615d
commit 90a3e94060
2 changed files with 0 additions and 8 deletions

View File

@@ -101,7 +101,6 @@ inputs:
mariadb.mountFrom = "nodatacow"; mariadb.mountFrom = "nodatacow";
open-webui.ollamaHost = "127.0.0.1"; open-webui.ollamaHost = "127.0.0.1";
howdy = {}; howdy = {};
preload = {};
}; };
bugs = [ "amdpstate" ]; bugs = [ "amdpstate" ];
packages = { mathematica = {}; vasp = {}; }; packages = { mathematica = {}; vasp = {}; };

View File

@@ -1,7 +0,0 @@
inputs:
{
options.nixos.services.preload = let inherit (inputs.lib) mkOption types; in mkOption
{ type = types.nullOr (types.submodule {}); default = null; };
config = let inherit (inputs.config.nixos.services) preload; in inputs.lib.mkIf (preload != null)
{ services.preload.enable = true; };
}