diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-02 10:26:13 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-02 10:26:13 +0100 |
| commit | 286470ab284e6cf0ef2279fbee174db1706ccbef (patch) | |
| tree | 62c356cb85d8e0b4fcf958c5e1969a2f266bd7db /modules/home/i3wm/original/xdg.nix | |
| parent | 6220c00e4ad10ba16f9a0b0f500ec9d3aa2f1900 (diff) | |
moved everything to their own modules
Diffstat (limited to 'modules/home/i3wm/original/xdg.nix')
| -rw-r--r-- | modules/home/i3wm/original/xdg.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/home/i3wm/original/xdg.nix b/modules/home/i3wm/original/xdg.nix new file mode 100644 index 0000000..7590ea8 --- /dev/null +++ b/modules/home/i3wm/original/xdg.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + xdg = { + enable = true; + + mimeApps = { + enable = true; + defaultApplications = { + "text/plain" = [ "nvim.desktop" ]; + "text/markdown" = [ "nvim.desktop" ]; + "text/x-markdown" = [ "nvim.desktop" ]; + }; + }; + }; +}
\ No newline at end of file |
