diff --git a/modules/home/settings/gtk/default.nix b/modules/home/settings/gtk/default.nix index ef2f482..868ff0a 100644 --- a/modules/home/settings/gtk/default.nix +++ b/modules/home/settings/gtk/default.nix @@ -16,7 +16,7 @@ }; }; iconTheme = { - package = pkgs.papirus-icon-theme.override {color = "indigo";}; + package = pkgs.papirus-icon-theme.override { color = "indigo"; }; name = "Papirus-Dark"; }; cursorTheme = { diff --git a/modules/home/settings/xdg/default.nix b/modules/home/settings/xdg/default.nix index b15b0df..19869b7 100644 --- a/modules/home/settings/xdg/default.nix +++ b/modules/home/settings/xdg/default.nix @@ -1,10 +1,11 @@ { ... }: { xdg.mimeApps.defaultApplications = { - "inode/directory" = ["pcmanfm-qt.desktop"]; - "text/plain" = ["nvim.desktop"]; - "image/png" = ["imv.desktop"]; - "image/jpeg" = ["imv.desktop"]; - "video/*" = ["mpv.desktop"]; + "inode/directory" = [ "pcmanfm-qt.desktop" ]; + "text/plain" = [ "nvim.desktop" ]; + "image/png" = [ "imv.desktop" ]; + "image/jpeg" = [ "imv.desktop" ]; + "image/jp2" = [ "imv.desktop" ]; + "video/*" = [ "mpv.desktop" ]; }; }