build: enable non-flake import
Alan Pearce alan@alanpearce.eu
Sat, 25 May 2024 02:20:24 +0200
3 files changed, 7 insertions(+), 7 deletions(-)
M nix/modules/default.nix → 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 @@ default = "info"; }; 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 @@ }; }; importer = mkOption { + default = { }; type = types.submodule { freeformType = settingsFormat.type; @@ -179,7 +180,6 @@ }; }; }; }; - default = { }; description = '' Configuration for searchix.
M nix/package.nix → nix/package.nix
@@ -47,9 +47,9 @@ ldflags = [ "-s" "-w" "-X" - "searchix/internal/config.CommitSHA=${self.rev or self.dirtyRev}" + "searchix/internal/config.CommitSHA=${self.rev or self.dirtyRev or "unknown"}" "-X" - "searchix/internal/config.ShortSHA=${self.shortRev or self.dirtyShortRev}" + "searchix/internal/config.ShortSHA=${self.shortRev or self.dirtyShortRev or "unknown"}" "-X" "main.buildVersion=${version}" ];