From a2ae9bfa4b72c1cff9a4d495ac5247fc802777b6 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 26 Jan 2026 21:01:35 +0100 Subject: [PATCH] feat: write first little bit of `xdg.mimeApps` options --- modules/home/xdg.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/home/xdg.nix diff --git a/modules/home/xdg.nix b/modules/home/xdg.nix new file mode 100644 index 0000000..794dc7f --- /dev/null +++ b/modules/home/xdg.nix @@ -0,0 +1,9 @@ +{ + xdg.mimeApps = { + enable = true; + defaultApplications = { + "x-scheme-handler/sgnl" = "signal-desktop.desktop"; + "x-scheme-handler/signalcaptcha" = "signal-desktop.desktop"; + }; + }; +}