From 18e7f651ce33b1544178f444c6bd3fbaf44fc831 Mon Sep 17 00:00:00 2001 From: adikro Date: Sun, 3 May 2026 22:09:25 +0200 Subject: hm changes --- hm/soft/editor.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hm/soft/editor.nix (limited to 'hm/soft/editor.nix') diff --git a/hm/soft/editor.nix b/hm/soft/editor.nix new file mode 100644 index 0000000..c99c683 --- /dev/null +++ b/hm/soft/editor.nix @@ -0,0 +1,13 @@ +{ config, pkgs, lib, ... }: +let + cfg = config.hm.soft.editor; +in +{ + options.hm.soft.editor.enable = lib.mkEnableOption "enables the vis editor along with the nixd language server"; + config = lib.mkIf cfg.enable { + home.packages = with pkgs; [ + vis + nixd + ]; + }; +} -- cgit v1.3