aboutsummaryrefslogtreecommitdiff
path: root/home/rices/original/xdg.nix
blob: b1b612e2548467e2240dff689e1175ac95a62a7c (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" ];
      };
    };
  };
}