15 lines
302 B
Nix
15 lines
302 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
discord
|
|
];
|
|
|
|
xdg.desktopEntries = {
|
|
discord = {
|
|
name = "Discord";
|
|
# Custom options to reduce flickering under wayland.
|
|
exec = "discord --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu";
|
|
};
|
|
};
|
|
}
|