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