summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-07-05 12:33:19 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-07-05 12:33:19 +0200
commit6fdefa5e878ac5ded5c60d0399703b063d263cb4 (patch)
treeb31b78dc87399ac5c7249df988a41ed14a5e8ff3 /nixos
parent522fc78274b9cf84a87d95647ac466b13379c2f1 (diff)
some nvim related fixes
Diffstat (limited to '')
-rw-r--r--nixos/desktop/hyprland.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/nixos/desktop/hyprland.nix b/nixos/desktop/hyprland.nix
index 84c05e7..62b39ae 100644
--- a/nixos/desktop/hyprland.nix
+++ b/nixos/desktop/hyprland.nix
@@ -32,13 +32,15 @@
xdg.portal = {
enable = true;
+ extraPortals = with pkgs; [ xdg-desktop-portal-hyprland xdg-desktop-portal-gtk ];
config = {
- common = {
- default = [
- "hyprland"
- "gtk"
- ];
- };
- };
+ common = {
+ default = [
+ "hyprland"
+ "gtk"
+ ];
+ "org.freedesktop.impl.portal.Filechooser"="gtk";
+ };
+ };
};
}