From 4c4b980bff860dda725253438b499245338161df Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 25 May 2024 02:20:24 +0200 Subject: build: enable non-flake import --- nix/modules/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nix/modules') diff --git a/nix/modules/default.nix b/nix/modules/default.nix index acfa7aa..690116b 100644 --- a/nix/modules/default.nix +++ b/nix/modules/default.nix @@ -1,4 +1,3 @@ -flake: { config , lib , pkgs @@ -9,7 +8,7 @@ let inherit (builtins) fromTOML readFile; cfg = config.services.searchix; - package = flake.packages.${pkgs.system}.default; + package = pkgs.callPackage ../.. { }; defaults = fromTOML (readFile ../../defaults.toml); @@ -91,6 +90,7 @@ in }; web = mkOption { + default = { }; type = types.submodule { freeformType = settingsFormat.type; options = { @@ -113,7 +113,7 @@ in mkOption { type = types.str; description = "The base URL that searchix will be served on."; - default = "http://${web.listenAddress}:${web.port}"; + default = "http://${web.listenAddress}:${toString web.port}"; }; environment = mkOption { @@ -146,6 +146,7 @@ in }; importer = mkOption { + default = { }; type = types.submodule { freeformType = settingsFormat.type; @@ -179,7 +180,6 @@ in }; }; }; - default = { }; description = '' Configuration for searchix. -- cgit 1.4.1