about summary refs log tree commit diff stats
path: root/system/services/xdg/default.nix
blob: 3b0233a2ec4dd60db69c897e8356b69f215ac94e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# vim: ts=2
{pkgs, ...}: {
  xdg = {
    portal = {
      enable = true;
      # TODO only enable the below, when on river (or wlr based compositor)
      wlr.enable = true;
      extraPortals = [pkgs.xdg-desktop-portal-wlr];
    };
  };
  # TODO mime = {};
}