This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/user/chat.nix

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
];
}