nixos-config/user/chat.nix
Leonardo Eugênio 5ff7906392 update
2024-12-30 21:25:58 -03:00

24 lines
298 B
Nix

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