diff options
Diffstat (limited to 'nixpkgs/icewm.nix')
-rw-r--r-- | nixpkgs/icewm.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nixpkgs/icewm.nix b/nixpkgs/icewm.nix index 225c8fc..6bb963c 100644 --- a/nixpkgs/icewm.nix +++ b/nixpkgs/icewm.nix @@ -49,4 +49,11 @@ }; home.packages = with pkgs; [ chicago95 ]; + + xdg.mimeApps.defaultApplications = { + "application/pdf" = [ "epdfview.desktop" ]; + "image/jpeg" = [ "org.xfce.ristretto.desktop" ]; + "image/png" = [ "org.xfce.ristretto.desktop" ]; + "text/plain" = [ "leafpad.desktop" ]; + }; } |