Add webcord

This commit is contained in:
ItsDrike 2024-06-23 20:17:08 +02:00
parent 6bedfed95c
commit 6545dda7f8
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 41 additions and 0 deletions

View file

@ -2,5 +2,6 @@ _: {
imports = [
./spotify
./vesktop
./webcord
];
}

View file

@ -0,0 +1,34 @@
{
lib,
osConfig,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.webcord;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
# Webcord with vencord extension installed
webcord-vencord
];
systemd.user.services."webcord" = mkIf cfg.autoStart {
Unit = {
Description = "Webcord (An electron-based Discord client implemented without Discord API with Vencord built-in)";
After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
Restart = "on-failure";
ExecStart = "${pkgs.webcord-vencord}/bin/webcord";
};
Install.WantedBy = [ "graphical-session.target" ];
};
};
}

View file

@ -70,6 +70,7 @@
# Applications
".config/spotify"
".config/vesktop"
".config/WebCord"
".local/share/Smart Code ltd/Stremio"
# Tools
@ -178,6 +179,7 @@
enable = true;
autoStart = true;
};
webcord.enable = true;
mpv.enable = true;
nomacs.enable = true; # TODO: probably disable
qimgv.enable = true;

View file

@ -33,6 +33,10 @@ in
enable = mkEnableOption "Vesktop (An alternate client for Discord with Vencord built-in)";
autoStart = mkEnableOption "Auto-Start for Vesktop";
};
webcord = {
enable = mkEnableOption "Webcord (An electron-based Discord client implemented without Discord API with Vencord built-in)";
autoStart = mkEnableOption "Auto-Start for Webcord";
};
nomacs.enable = mkEnableOption "Nomacs (Qt-based image viewer)";
qimgv.enable = mkEnableOption "QImgV (Qt-based image viewer with video support)";
qbittorrent.enable = mkEnableOption "Qbittorrent (Free software BitTorrent client)";