95 lines
3.3 KiB
Nix
95 lines
3.3 KiB
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
config = lib.mkIf config.nathan.programs.communications.enable {
|
|
home.packages = with pkgs;
|
|
let
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
config = { allowUnfree = true; };
|
|
inherit system;
|
|
};
|
|
enableWayland = drv: bin:
|
|
drv.overrideAttrs (old: {
|
|
nativeBuildInputs = (old.nativeBuildInputs or [ ])
|
|
++ [ pkgs.makeWrapper ];
|
|
runtimeDependencies = (old.runtimeDependencies or [ ])
|
|
++ [ pkgs.wayland ];
|
|
postFixup = (old.postFixup or "") + ''
|
|
wrapProgram $out/bin/${bin} \
|
|
--add-flags "--enable-features=UseOzonePlatform" \
|
|
--add-flags "--ozone-platform=wayland"
|
|
'';
|
|
});
|
|
zulipWayland = pkgs.makeDesktopItem {
|
|
name = "zulip-wayland";
|
|
desktopName = "Zulip (Wayland)";
|
|
exec =
|
|
"${unstable.zulip}/bin/zulip --enable-features=UseOzonePlatform --ozone-platform=wayland";
|
|
terminal = false;
|
|
icon = "zulip";
|
|
type = "Application";
|
|
};
|
|
# Facebook messenger
|
|
fbChromeDesktopItem = pkgs.makeDesktopItem {
|
|
name = "messenger-chrome";
|
|
desktopName = "Messenger (chrome)";
|
|
exec = ''
|
|
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://messenger.com"'';
|
|
terminal = false;
|
|
};
|
|
# Teams
|
|
teamsItem = pkgs.makeDesktopItem {
|
|
name = "teams-wayland";
|
|
desktopName = "Teams (Wayland)";
|
|
exec = ''
|
|
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://teams.microsoft.com"'';
|
|
terminal = false;
|
|
};
|
|
# Cinny
|
|
cinnyItem = pkgs.makeDesktopItem {
|
|
name = "cinny";
|
|
desktopName = "Cinny";
|
|
exec = ''
|
|
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://app.cinny.in"'';
|
|
terminal = false;
|
|
};
|
|
# Discord
|
|
discordItem = pkgs.makeDesktopItem {
|
|
name = "discord";
|
|
desktopName = "Discord (Chromium)";
|
|
exec = ''
|
|
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://discord.com/app"'';
|
|
terminal = false;
|
|
};
|
|
in [
|
|
# Discord
|
|
# inputs.self.packages.${pkgs.system}.discordWayland
|
|
# betterdiscordctl
|
|
discordItem
|
|
# Desktop matrix client
|
|
(enableWayland element-desktop "element-desktop")
|
|
# Desktop signal client
|
|
(enableWayland signal-desktop "signal-desktop")
|
|
# Desktop telegram client
|
|
tdesktop
|
|
# Desktop mastodon client
|
|
# TODO: Reenable when unbroken on unstable
|
|
# tootle
|
|
# zulip
|
|
unstable.zulip
|
|
zulipWayland
|
|
# Zoom (for work, sadly)
|
|
unstable.zoom-us
|
|
# Teams (also for work)
|
|
unstable.teams
|
|
# Cinny for pretty matrix
|
|
cinnyItem
|
|
# chromium
|
|
(enableWayland chromium "chromium")
|
|
# Wayland workaround packages
|
|
fbChromeDesktopItem
|
|
teamsItem
|
|
];
|
|
};
|
|
}
|