nixos-config/user/chat.nix
2024-06-16 13:53:34 -03:00

24 lines
293 B
Nix

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