From 6d8767d93b22014b37bbf6ff525d8a1dd714108a Mon Sep 17 00:00:00 2001 From: Aubrey Taylor Date: Sun, 26 Jan 2025 13:15:34 -0600 Subject: [PATCH] flake+ --- flake.nix | 82 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 43 insertions(+), 39 deletions(-) diff --git a/flake.nix b/flake.nix index fe8ae03..57dfb71 100644 --- a/flake.nix +++ b/flake.nix @@ -30,49 +30,53 @@ with pkgs; { formatter = alejandra; defaultPackage = pkgs.callPackage ./. {}; - nixosModules.default = { - config, - lib, - pkgs, - ... - }: { - options.services.wanireminder = { - enable = lib.mkEnableOption "wanikani reminder bot"; - webhook = lib.mkOption { + } + ) + // flake-utils.lib.eachDefaultSystemPassThrough (system: { + nixosModules.default = { + config, + lib, + pkgs, + ... + }: { + options.services.wanireminder = { + enable = lib.mkEnableOption "wanikani reminder bot"; + webhook = lib.mkOption { + type = lib.types.string; + description = "The webhook to post the messages to"; + }; + users = + lib.mkOption { + type = lib.types.listOf lib.types.attrs; + } + // { + name = lib.mkOption { type = lib.types.string; - description = "The webhook to post the messages to"; }; - users = lib.mkOption { - type = lib.types.listOf lib.types.attrs; - } // { - name = lib.mkOption { - type = lib.types.string; - }; - wktoken = lib.mkOption { - type = lib.types.string; - }; - discord = lib.mkOption { - type = lib.types.string; - }; + wktoken = lib.mkOption { + type = lib.types.string; + }; + discord = lib.mkOption { + type = lib.types.string; }; }; - config = lib.mkIf config.services.wanireminder.enable { - systemd.services.wanireminder = { - wantedBy = ["multi-user.target"]; - after = ["network.target"]; - description = "Run wanireminders"; - serviceConfig = { - WorkingDirectory = "${self.defaultPackage.${system}}"; - Type = "oneshot"; - OnCalendar = "hourly"; - Persistent = true; - ExecStart = let - configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder); - in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}''; - }; - }; + }; + config = lib.mkIf config.services.wanireminder.enable { + systemd.services.wanireminder = { + wantedBy = ["multi-user.target"]; + after = ["network.target"]; + description = "Run wanireminders"; + serviceConfig = { + WorkingDirectory = "${self.defaultPackage.${system}}"; + Type = "oneshot"; + OnCalendar = "hourly"; + Persistent = true; + ExecStart = let + configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder); + in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}''; }; }; - } - ); + }; + }; + }); }