Add Webcord

This commit is contained in:
Yorick Barbanneau 2023-08-05 19:05:10 +02:00
parent 9ebccf5cc6
commit e49b8d41af
2 changed files with 18 additions and 0 deletions

View file

@ -59,6 +59,7 @@
programs.home-manager.enable = true;
imports = [
../../modules/home/desktop
../../modules/home/webcord.nix
../../modules/home/cli
../../modules/home/firefox
../../modules/home/foot.nix

17
modules/home/webcord.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, ...}:
{
home.packages = with pkgs; [
webcord
];
xdg.desktopEntries = {
webcord = {
name = "Webcord";
genericName = "Unofficial Discord client";
exec = "webcord --ozone-platform=wayland";
icon = "webcord";
terminal = false;
categories = [ "Application" "Network" "WebBrowser" ];
};
};
}