nixos-config/user/chat.nix
2025-03-12 11:40:54 -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
];
}