This commit is contained in:
Aubrey 2025-01-26 13:15:34 -06:00
parent 08664b4309
commit 6d8767d93b
No known key found for this signature in database

View file

@ -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}'';
};
};
}
);
};
};
});
}