wanireminder/flake.nix

98 lines
2.8 KiB
Nix
Raw Permalink Normal View History

2025-01-26 14:10:11 -05:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
flake-utils,
fenix,
}:
flake-utils.lib.eachDefaultSystem
(
system: let
overlays = [fenix.overlays.default];
pkgs = import nixpkgs {
inherit system overlays;
};
libPath = with pkgs;
lib.makeLibraryPath [
libGL
libxkbcommon
wayland
];
in
with pkgs; {
formatter = alejandra;
defaultPackage = pkgs.callPackage ./. {};
2025-01-26 14:15:34 -05:00
}
)
// flake-utils.lib.eachDefaultSystemPassThrough (system: {
nixosModules.default = {
config,
lib,
pkgs,
...
}: {
options.services.wanireminder = {
enable = lib.mkEnableOption "wanikani reminder bot";
2025-01-27 11:49:52 -05:00
calendarTimes = lib.mkOption {
2025-01-27 11:51:41 -05:00
type = lib.types.oneOf [(lib.types.listOf lib.types.str) lib.types.str];
2025-01-27 11:49:52 -05:00
default = "hourly";
description = "Systemd timer specification";
};
2025-01-26 14:15:34 -05:00
webhook = lib.mkOption {
2025-01-27 11:49:52 -05:00
type = lib.types.str;
2025-01-26 14:15:34 -05:00
description = "The webhook to post the messages to";
};
2025-01-30 17:37:36 -05:00
threadId = lib.mkOption {
type = lib.types.str;
};
2025-01-26 14:15:34 -05:00
users =
lib.mkOption {
type = lib.types.listOf lib.types.attrs;
}
// {
name = lib.mkOption {
2025-01-27 11:49:52 -05:00
type = lib.types.str;
2025-01-26 14:10:11 -05:00
};
2025-01-26 14:15:34 -05:00
wktoken = lib.mkOption {
2025-01-27 11:49:52 -05:00
type = lib.types.str;
2025-01-26 14:10:11 -05:00
};
2025-01-26 14:15:34 -05:00
discord = lib.mkOption {
2025-01-27 11:49:52 -05:00
type = lib.types.str;
2025-01-26 14:10:11 -05:00
};
mentionUser = lib.mkOption {
type = lib.types.bool;
};
2025-01-26 14:10:11 -05:00
};
2025-01-26 14:15:34 -05:00
};
config = lib.mkIf config.services.wanireminder.enable {
2025-01-26 14:28:27 -05:00
systemd.timers.wanireminder = {
2025-01-30 22:07:30 -05:00
wantedBy = ["timers.target"];
2025-01-26 14:15:34 -05:00
after = ["network.target"];
2025-01-26 14:28:27 -05:00
timerConfig = {
2025-01-27 11:49:52 -05:00
OnCalendar = config.services.wanireminder.calendarTimes;
2025-01-26 14:28:27 -05:00
Persistent = true;
2025-01-26 14:31:13 -05:00
Unit = ["wanireminder.service"];
2025-01-26 14:28:27 -05:00
};
};
systemd.services.wanireminder = {
2025-01-26 14:15:34 -05:00
description = "Run wanireminders";
2025-01-26 14:31:13 -05:00
script = let
configJson = builtins.toFile "config.json" (builtins.toJSON config.services.wanireminder);
in ''${self.defaultPackage.${system}}/bin/wanireminder ${configJson}'';
2025-01-26 14:15:34 -05:00
serviceConfig = {
Type = "oneshot";
};
2025-01-26 14:10:11 -05:00
};
2025-01-26 14:15:34 -05:00
};
};
});
2025-01-26 14:10:11 -05:00
}