nix/home-manager/modules/desktop.nix

14 lines
No EOL
418 B
Nix

{ ... }:
{
xdg.desktopEntries = {
# 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";
};
};
}