rice/hosts/alice/sway.nix

15 lines
280 B
Nix
Raw Normal View History

2024-01-19 14:36:08 +00:00
{pkgs, ...}: {
programs.sway = {
enable = true;
package = pkgs.swayfx.overrideAttrs (_: {passthru.providedSessions = ["sway"];});
};
2024-01-19 14:36:08 +00:00
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
}