nixos-config/user/chat.nix
2023-08-08 12:43:24 -03:00

17 lines
283 B
Nix

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