nixos-config/user/chat.nix
Leonardo Eugênio 0a7e404859 update
2025-03-12 11:40:54 -03:00

24 lines
298 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
];
}