Add Webcord
This commit is contained in:
parent
9ebccf5cc6
commit
e49b8d41af
2 changed files with 18 additions and 0 deletions
|
@ -59,6 +59,7 @@
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/home/desktop
|
../../modules/home/desktop
|
||||||
|
../../modules/home/webcord.nix
|
||||||
../../modules/home/cli
|
../../modules/home/cli
|
||||||
../../modules/home/firefox
|
../../modules/home/firefox
|
||||||
../../modules/home/foot.nix
|
../../modules/home/foot.nix
|
||||||
|
|
17
modules/home/webcord.nix
Normal file
17
modules/home/webcord.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue