17 lines
283 B
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
|
|
];
|
|
}
|