nixos-config/user/chat.nix
2023-10-03 11:28:40 -03:00

17 lines
329 B
Nix

{ config, pkgs, lib, inputs, ... }: {
wayland.windowManager.sway = {
extraConfig = ''
exec thunderbird
exec webcord
exec telegram-desktop
'';
};
home.packages = with pkgs; [
tdesktop
webcord
(wrapThunderbird thunderbirdPackages.thunderbird-102 { })
element-desktop-wayland
];
}