rice/hosts/alice/sway.nix

12 lines
181 B
Nix
Raw Normal View History

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