commit | 4f0b423c8a9fffac26d09f5cbc4c708669121db0 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Fri Sep 02 00:17:59 2022 +0100 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Sep 04 11:34:38 2022 +0100 |
tree | e6b8610e8bb247346f0b16e5a3b82375ba686440 | |
parent | e27f938811a7e50d57ea31ec71fb818d0a0ba6f7 [diff] |
Enable xdg-utils and xdg-desktop-portal - xdg-utils is used for stuff like xdg-open and default applications - xdg-desktop-portal is used for screensharing
diff --git a/modules/xdg.nix b/modules/xdg.nix new file mode 100644 index 0000000..64cffaf --- /dev/null +++ b/modules/xdg.nix
@@ -0,0 +1,7 @@ +{pkgs, ...}: { + home.home.packages = [pkgs.xdg-utils]; + config.xdg.portal = { + enable = true; + wlr.enable = true; + }; +}