build: export nixos module and overlay
Alan Pearce alan@alanpearce.eu
Sun, 12 May 2024 23:24:03 +0200
4 files changed, 22 insertions(+), 10 deletions(-)
M flake.nix → flake.nix
@@ -22,7 +22,12 @@ }; }; outputs = { self, nixpkgs, flake-utils, gomod2nix, pre-commit-hooks, simple-css }: - (flake-utils.lib.eachDefaultSystem + { + nixosModules = { + default = import ./nix/modules self; + }; + overlays.default = import ./nix/overlays; + } // (flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs {
M nix/modules/default.nix → nix/modules/default.nix
@@ -1,3 +1,4 @@+flake: { config , lib , pkgs @@ -7,7 +8,7 @@ let cfg = config.services.searchix; - package = (import ../.. { inherit pkgs; }).searchix; + package = flake.packages.${pkgs.system}.default; settingsFormat = pkgs.formats.toml { }; @@ -133,7 +134,9 @@ description = "Where to store search index and other data, can be relative to homeDir."; default = "${cfg.homeDir}/data"; }; sources = mkOption { - type = with types; attrsOf (submodule (import ./source-options.nix { inherit cfg; })); + type = with types; attrsOf (submodule (import ./source-options.nix { + inherit cfg settingsFormat; + })); default = { nixos.enable = true; darwin.enable = false; @@ -149,17 +152,18 @@ }; }; config = mkIf cfg.enable { - nixpkgs.overlays = [ - (import "${(import ../sources.nix).gomod2nix}/overlay.nix") - ]; - systemd.services.searchix-importer = { description = "Searchix option importer"; - unitConfig.Conflicts = [ "searchix-web" ]; + conflicts = [ "searchix-web.service" ]; + before = [ "searchix-web.service" ]; path = with pkgs; [ nix ]; serviceConfig = defaultServiceConfig // { ExecStart = "${package}/bin/import"; Type = "oneshot"; + + RestartSec = 10; + RestartSteps = 5; + RestartMaxDelaySec = "5 min"; }; environment = env; startAt = cfg.dates; @@ -175,6 +179,7 @@ systemd.services.searchix-web = { description = "Searchix Nix option search"; after = [ "searchix-importer.service" ]; + wants = [ "searchix-importer.service" ]; wantedBy = [ "multi-user.target" ]; environment = env; serviceConfig = defaultServiceConfig // {
M nix/modules/source-options.nix → nix/modules/source-options.nix
@@ -1,9 +1,11 @@-{ cfg }: +{ cfg, settingsFormat }: { config, lib, name, ... }: let inherit (lib) literalExpression mkOption mkEnableOption types; in { + freeformType = settingsFormat.type; + options = { key = mkOption { type = types.strMatching "[a-z0-9_-]*";
M nix/package.nix → nix/package.nix
@@ -1,7 +1,7 @@ { pkgs ? ( let inherit (builtins) fetchTree fromJSON readFile; - inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix; + inherit ((fromJSON (readFile ../flake.lock)).nodes) nixpkgs gomod2nix; in import (fetchTree nixpkgs.locked) { overlays = [