nixos-config/user/chat.nix

24 lines
293 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
lib,
inputs,
...
}:
{
wayland.windowManager.sway = {
extraConfig = ''
exec thunderbird
2023-08-08 12:43:24 -03:00
exec webcord
exec telegram-desktop
'';
2022-10-24 20:16:41 -03:00
};
2023-05-07 12:18:50 -03:00
home.packages = with pkgs; [
tdesktop
webcord
2023-10-23 21:11:48 -03:00
thunderbird
2023-05-07 12:18:50 -03:00
element-desktop-wayland
];
2022-10-24 20:16:41 -03:00
}