Auto-commit: 2026-01-06 04:48:11

This commit is contained in:
2026-01-06 04:48:11 +00:00
parent 1995ed3b4c
commit a9bba6edb1

View File

@@ -4,7 +4,11 @@ let
cfg = nixosConfig.my.desktop.nixcord;
in
{
programs.nixcord = lib.mkIf cfg.enable {
config = lib.mkIf cfg.enable{
systemd.user.targets.graphical-session = {
wants = [ "arrpc.service" ];
};
programs.nixcord = {
enable = true; # Enable Nixcord (It also installs Discord)
discord = {
vencord.enable = false; # Use Vencord (default)
@@ -98,5 +102,5 @@ in
extraConfig = {
};
};
# ...
};
}