rice/hosts/alice/sway.nix

15 lines
228 B
Nix
Raw Permalink Normal View History

2024-01-19 14:36:08 +00:00
{pkgs, ...}: {
programs.sway = {
enable = true;
2024-03-10 15:32:42 +00:00
package = pkgs.unstable.sway;
};
2024-01-19 14:36:08 +00:00
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
}