Fixed desktopEntries error

This commit is contained in:
2025-05-16 16:07:26 +03:00
parent 2c5db1c0de
commit e9bbb99257
2 changed files with 14 additions and 13 deletions

View File

@@ -138,17 +138,4 @@
serviceConfig = { Type = "oneshot"; User = "kyren"; };
};
xdg.desktopEntries = {
"com.ktechpit.whatsie" = {
name = "WhatsApp";
genericName = "Watsie, unofficial WhatsApp client";
exec = "whatsie %U";
terminal = false;
icon = "com.github.eneshecan.WhatsAppForLinux";
categories = [ "Application" "Network" "WebBrowser" ];
settings = {
Keywords = "chat;im;messaging;messenger;sms;whatsapp;whatsapp-desktop;whatsie;";
};
};
};
}

View File

@@ -25,6 +25,20 @@
"$HOME/.local/bin"
];
xdg.desktopEntries = {
"com.ktechpit.whatsie" = {
name = "WhatsApp";
genericName = "Watsie, unofficial WhatsApp client";
exec = "whatsie %U";
terminal = false;
icon = "com.github.eneshecan.WhatsAppForLinux";
categories = [ "Application" "Network" "WebBrowser" ];
settings = {
Keywords = "chat;im;messaging;messenger;sms;whatsapp;whatsapp-desktop;whatsie;";
};
};
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}