diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-05-06 18:55:06 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-05-06 18:55:06 +0300 |
commit | 8f7371998f813857f25afef4160075665f924ab7 (patch) | |
tree | 7bffc723cbed32ab8aacae2feaf60de039bd3ff3 /modules/nixos/common | |
parent | 2023-05-04 (diff) |
2023-05-06
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/common/security.nix | 2 | ||||
-rw-r--r-- | modules/nixos/common/xdg.nix | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/modules/nixos/common/security.nix b/modules/nixos/common/security.nix index 7a3d3b3..2272e12 100644 --- a/modules/nixos/common/security.nix +++ b/modules/nixos/common/security.nix @@ -25,5 +25,7 @@ with lib; { }); ''; }; + + rtkit.enable = true; }; } diff --git a/modules/nixos/common/xdg.nix b/modules/nixos/common/xdg.nix index 8ddf1ac..d74bf82 100644 --- a/modules/nixos/common/xdg.nix +++ b/modules/nixos/common/xdg.nix @@ -15,6 +15,11 @@ with lib; { (mkAliasOptionModule ["userDirs"] (withBase "userDirs")) ]; + xdg.portal = mkIf this.isHeadful { + enable = true; + xdgOpenUsePortal = true; + }; + hm.xdg = mkMerge [ { enable = true; |