From 845471f4d94e736cda06b41a47ceca706bb4a0f0 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 27 Jun 2024 00:44:45 -0300 Subject: [PATCH] nixos: add the recommendation from home-manager for xdg-desktop-portal --- nixos.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos.nix b/nixos.nix index 13fbfb0..2338e35 100644 --- a/nixos.nix +++ b/nixos.nix @@ -235,6 +235,12 @@ }; }; + # Needed for home-manager + environment.pathsToLink = [ + "/share/xdg-desktop-portal" + "/share/applications" + ]; + # Enable OpenGL. hardware.graphics = { enable = true;