nixos-config/user/chat.nix
2024-12-20 12:51:37 -03:00

24 lines
306 B
Nix

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