feat: add discord aarpc systemd unit
Some checks are pending
Check flake / check (push) Waiting to run

This commit is contained in:
Youwen Wu 2024-12-14 17:55:36 -08:00
parent a1865b410f
commit 69c6613002
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
4 changed files with 20 additions and 1 deletions

View file

@ -5,5 +5,6 @@
../programs
../hyprland/desktop
../waybar/desktop
../vesktop
];
}

View file

@ -6,6 +6,7 @@
../programs
../hyprland/laptop
../waybar/laptop
../vesktop
];
# some overrides for laptop specifically

View file

@ -28,7 +28,6 @@ pkgs: with pkgs; [
# messengers
signal-desktop
vesktop
iamb
discordo

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.vesktop
];
systemd.user.services.discord-arrpc = {
Unit = {
Description = "Discord RPC server for Vesktop.";
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.arrpc}/bin/arrpc";
};
};
}