11 lines
181 B
Nix
11 lines
181 B
Nix
{pkgs, ...}: {
|
|
programs.sway.enable = true;
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
}
|