diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-09-29 14:39:03 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-09-29 14:39:03 -0500 |
commit | 717bb0cec39531bce071fcbb10b8928407f1e20e (patch) | |
tree | 652a4e56a6fd11f11ea032f9404027f999e5b7b7 /archetypes/profiles/desktop/default.nix | |
parent | 45030fa78efeba1717a4cc1ef65d8be828c7ba72 (diff) | |
download | nixos-717bb0cec39531bce071fcbb10b8928407f1e20e.tar.xz nixos-717bb0cec39531bce071fcbb10b8928407f1e20e.zip |
open directory in xdg-mime config
Diffstat (limited to 'archetypes/profiles/desktop/default.nix')
-rw-r--r-- | archetypes/profiles/desktop/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/archetypes/profiles/desktop/default.nix b/archetypes/profiles/desktop/default.nix index 0e68b84..a0ed9a8 100644 --- a/archetypes/profiles/desktop/default.nix +++ b/archetypes/profiles/desktop/default.nix @@ -103,12 +103,13 @@ xdg.mimeApps._defaultCategoryApplications = { enable = true; categoryApplications = { - audio = [ "mpv" ]; - email = [ "thunderbird" ]; - image = [ "sxiv" ]; - pdf = [ "org.pwmt.zathura-pdf-mupdf" ]; - text = [ "nvim" ]; - video = [ "mpv" ]; + audio = [ "mpv" ]; + directory = [ "pcmanfm" ]; + email = [ "thunderbird" ]; + image = [ "sxiv" ]; + pdf = [ "org.pwmt.zathura-pdf-mupdf" ]; + text = [ "nvim" ]; + video = [ "mpv" ]; }; }; }; |