mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-30 22:21:02 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
50 lines
943 B
Nix
50 lines
943 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mkIf
|
|
mkOption
|
|
mkPackageOption
|
|
mkEnableOption
|
|
types
|
|
;
|
|
|
|
cfg = config.services.arrpc;
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.NotAShelf ];
|
|
|
|
options.services.arrpc = {
|
|
enable = mkEnableOption "arrpc";
|
|
package = mkPackageOption pkgs "arrpc" { };
|
|
|
|
systemdTarget = mkOption {
|
|
type = types.str;
|
|
default = "graphical-session.target";
|
|
example = "sway-session.target";
|
|
description = ''
|
|
Systemd target to bind to.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.user.services.arRPC = {
|
|
Unit = {
|
|
Description = "Discord Rich Presence for browsers, and some custom clients";
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = lib.getExe cfg.package;
|
|
Restart = "always";
|
|
};
|
|
|
|
Install.WantedBy = [ cfg.systemdTarget ];
|
|
};
|
|
};
|
|
}
|