nixos-config/user/chat.nix

23 lines
306 B
Nix

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