Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

Change portal config from strings to arrays

These can support multiple implementations for the same portal

+4 -4
+4 -4
modules/river.nix
··· 99 99 extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; 100 100 config.river = { 101 101 default = lib.mkForce "gtk"; 102 - "org.freedesktop.impl.portal.FileChooser" = "nautilus"; 103 - "org.freedesktop.impl.portal.Inhibit" = "none"; 104 - "org.freedesktop.impl.portal.ScreenCast" = "wlr"; 105 - "org.freedesktop.impl.portal.Screenshot" = "wlr"; 102 + "org.freedesktop.impl.portal.FileChooser" = [ "nautilus" ]; 103 + "org.freedesktop.impl.portal.Inhibit" = [ "none" ]; 104 + "org.freedesktop.impl.portal.ScreenCast" = [ "wlr" ]; 105 + "org.freedesktop.impl.portal.Screenshot" = [ "wlr" ]; 106 106 }; 107 107 }; 108 108 }