nixconf/common/discord/discord.nix
2024-07-23 22:09:13 +02:00

14 lines
401 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
(symlinkJoin {
name = "vesktop";
paths = [
(writeShellScriptBin "vesktop" ''${vesktop}/bin/vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
(writeShellScriptBin "Vesktop" ''${vesktop}/bin/Vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland'')
vesktop
];
})
];
}