14 lines
280 B
Nix
14 lines
280 B
Nix
{pkgs, ...}: {
|
|
programs.sway = {
|
|
enable = true;
|
|
package = pkgs.swayfx.overrideAttrs (_: {passthru.providedSessions = ["sway"];});
|
|
};
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
}
|