diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/default.nix | 1 | ||||
| -rw-r--r-- | common/home/default.nix | 9 | ||||
| -rw-r--r-- | common/home/hyprland/default.nix | 4 |
3 files changed, 6 insertions, 8 deletions
diff --git a/common/default.nix b/common/default.nix index ae59698..b4366c2 100644 --- a/common/default.nix +++ b/common/default.nix @@ -58,6 +58,7 @@ xdg.portal = { enable = true; + xdgOpenUsePortal = true; config = { common = { default = [ "hyprland" ]; diff --git a/common/home/default.nix b/common/home/default.nix index 896ae41..f613f77 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -140,14 +140,7 @@ packages = [ xdg = { portal = { - enable = true; - config = { - common = { - default = [ "hyprland" ]; - }; - }; - configPackages = [ pkgs.xdg-desktop-portal-hyprland ]; - extraPortals = [ pkgs.xdg-desktop-portal-hyprland ]; + xdgOpenUsePortal = true; }; userDirs = { diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix index f4f8d80..b08e8a4 100644 --- a/common/home/hyprland/default.nix +++ b/common/home/hyprland/default.nix @@ -1,5 +1,9 @@ { pkgs, ... }: { enable = true; + + package = null; + portalPackage = null; + systemd = { enable = true; variables = [ "--all" ]; |