From 7eb58a5819ebb05d684cad64d8a2a2057b5c46f5 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 8 Sep 2024 12:45:57 +0100 Subject: [PATCH] feat: I can open JSON files now refs: - https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/2047737 - https://gitlab.gnome.org/GNOME/nautilus/-/issues/3273 - https://github.com/nix-community/home-manager/issues/4955#issuecomment-2041447196 --- home/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/default.nix b/home/default.nix index d9a0902..6539ce3 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,7 +3,8 @@ pkgs, flakePath, ... -}: { +}: +{ imports = [ ./apps/wezterm.nix # ./apps/zsh.nix @@ -64,7 +65,7 @@ "Code/User/settings.json".source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/home/apps/vscode/settings.json"; }; - xdg.mime.enable = true; + xdg.mime.enable = false; # turn off if on nixos (you have bigger problems than that if you get to this point) targets.genericLinux.enable = true; }