nixos-config/user/chat.nix
2024-01-21 01:24:23 -03:00

23 lines
425 B
Nix

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