diff --git a/devices/pc/default.nix b/devices/pc/default.nix index 5c7baecb..2b90927c 100644 --- a/devices/pc/default.nix +++ b/devices/pc/default.nix @@ -101,7 +101,6 @@ inputs: mariadb.mountFrom = "nodatacow"; open-webui.ollamaHost = "127.0.0.1"; howdy = {}; - preload = {}; }; bugs = [ "amdpstate" ]; packages = { mathematica = {}; vasp = {}; }; diff --git a/modules/services/preload.nix b/modules/services/preload.nix deleted file mode 100644 index 1ff4d8fc..00000000 --- a/modules/services/preload.nix +++ /dev/null @@ -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; }; -}