nixos-config/user/chat.nix
Leonardo Eugênio 19fccaba0e update
2023-10-23 21:11:48 -03:00

17 lines
283 B
Nix

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