nix/home-manager/modules/desktop.nix

14 lines
No EOL
495 B
Nix

{ lib, ty-home-manager-options, ... }:
{
xdg.desktopEntries = lib.mkIf ty-home-manager-options.plasma.enable {
# Override vesktop for matching icon in beautyline (make it generic discord icon)
vesktop = {
categories = [ "Network" "InstantMessaging" "Chat" ];
exec = "vesktop %U";
genericName = "Internet Messenger";
icon = "discord"; # CHANGED
name = "Vesktop";
type = "Application";
};
};
}