nixos-config/user/chat.nix

23 lines
425 B
Nix
Raw Permalink Normal View History

2022-12-06 20:19:12 -03:00
{ 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
};
2024-01-21 01:24:23 -03:00
wayland.windowManager.hyprland.extraConfig = ''
exec-once = thunderbird
exec-once = webcord
exec-once = telegram-desktop
'';
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
}