aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/original/xdg.nix
blob: 7590ea8a08a8521d2ce2baa9f912d49e9949105a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

{
  xdg = {
    enable = true;

    mimeApps = {
      enable = true;
      defaultApplications = {
        "text/plain" = [ "nvim.desktop" ];
        "text/markdown" = [ "nvim.desktop" ];
        "text/x-markdown" = [ "nvim.desktop" ];
      };
    };
  };
}