From e6ed60548397627bf10f561f9438201dbba0a36e Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 21 Apr 2024 02:15:42 +0300 Subject: 2024-04-21 --- modules/emacs.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/emacs.nix (limited to 'modules/emacs.nix') diff --git a/modules/emacs.nix b/modules/emacs.nix new file mode 100644 index 0000000..8a59c9b --- /dev/null +++ b/modules/emacs.nix @@ -0,0 +1,19 @@ +{ config, lib, ... }: +with lib; +let + cfg = config.nixfiles.modules.emacs; +in +{ + config = mkIf cfg.enable { + nixfiles.modules.common.xdg.defaultApplications.emacs = [ + "application/atom+xml" + "application/json" + "application/rss+xml" + "application/schema+json" + "application/xhtml+xml" + "application/xml" + "text/csv" + "text/plain" + ]; + }; +} -- cgit v1.2.3