nixos-config/user/chat.nix
2023-06-02 23:11:11 -03:00

18 lines
310 B
Nix

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