flake+
This commit is contained in:
parent
08664b4309
commit
6d8767d93b
82
flake.nix
82
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}'';
|
||||
};
|
||||
};
|
||||
}
|
||||
);
|
||||
};
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue