System/home-manager/linux/programs/communications.nix

93 lines
3.2 KiB
Nix
Raw Normal View History

2022-06-23 02:57:41 -04:00
{ 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 ];
2023-01-01 19:18:27 -05:00
runtimeDependencies = (old.runtimeDependencies or [ ])
++ [ pkgs.wayland ];
2022-06-23 02:57:41 -04:00
postFixup = (old.postFixup or "") + ''
wrapProgram $out/bin/${bin} \
--add-flags "--enable-features=UseOzonePlatform" \
--add-flags "--ozone-platform=wayland"
'';
});
2022-06-23 02:57:41 -04:00
zulipWayland = pkgs.makeDesktopItem {
name = "zulip-wayland";
desktopName = "Zulip (Wayland)";
exec =
"${unstable.zulip}/bin/zulip --enable-features=UseOzonePlatform --ozone-platform=wayland";
2022-06-23 02:57:41 -04:00
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"'';
2022-06-23 02:57:41 -04:00
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"'';
2022-06-23 02:57:41 -04:00
terminal = false;
};
2022-09-05 22:00:17 -04:00
# Cinny
cinnyItem = pkgs.makeDesktopItem {
name = "cinny";
desktopName = "Cinny";
exec = ''
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://app.cinny.in"'';
2022-09-05 22:00:17 -04:00
terminal = false;
};
2023-01-27 20:36:15 -05:00
messagesItem = pkgs.makeDesktopItem {
name = "messages";
desktopName = "Messages (Chromium)";
exec = ''
${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland "--app=https://messages.google.com/web"'';
terminal = false;
};
in [
2022-06-23 02:57:41 -04:00
# Discord
2023-03-03 19:05:10 -05:00
inputs.self.packages.${pkgs.system}.discordWayland
betterdiscordctl
# discordItem
2022-06-23 02:57:41 -04:00
# Desktop matrix client
(enableWayland element-desktop "element-desktop")
# Desktop signal client
(enableWayland
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.signal-desktop
"signal-desktop")
2022-06-23 02:57:41 -04:00
# Desktop telegram client
tdesktop
# Desktop mastodon client
# TODO: Reenable when unbroken on unstable
2023-03-03 19:26:05 -05:00
tootle
2022-06-23 02:57:41 -04:00
# zulip
unstable.zulip
zulipWayland
2022-09-05 22:00:17 -04:00
# Cinny for pretty matrix
cinnyItem
2022-06-23 02:57:41 -04:00
# chromium
(enableWayland chromium "chromium")
# Wayland workaround packages
fbChromeDesktopItem
2023-01-27 20:36:15 -05:00
# Messages
messagesItem
2022-06-23 02:57:41 -04:00
];
};
}