From 8c831072e8dbe4a3ca7939b5c3d2c951472241f4 Mon Sep 17 00:00:00 2001 From: deva Date: Tue, 8 Oct 2024 20:23:54 -0400 Subject: [PATCH] fix zip files not using file-roller --- home/valerie/home.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/valerie/home.nix b/home/valerie/home.nix index 42e6d8c..4a1ec6b 100644 --- a/home/valerie/home.nix +++ b/home/valerie/home.nix @@ -52,4 +52,9 @@ in { programs.git.enable = true; systemd.user.startServices = "sd-switch"; }; + xdg.mime = { + defaultApplications = { + "applications/zip" = "org.gnome.FileRoller.desktop"; + }; + }; }