16 lines
343 B
Nix
16 lines
343 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [vesktop];
|
|
xdg.desktopEntries.discord = {
|
|
exec = "${pkgs.vesktop}/bin/vesktop";
|
|
terminal = false;
|
|
mimeType = ["x-scheme-handler/discord"];
|
|
name = "Discord - Vesktop";
|
|
genericName = "Discord but substituted with Vesktop";
|
|
type = "Application";
|
|
};
|
|
}
|