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 +++++++++++++ hm/soft/soft.nix | 1 + 2 files changed, 14 insertions(+) create mode 100644 hm/soft/editor.nix (limited to 'hm/soft') 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 + ]; + }; +} diff --git a/hm/soft/soft.nix b/hm/soft/soft.nix index 6675083..05740bb 100644 --- a/hm/soft/soft.nix +++ b/hm/soft/soft.nix @@ -3,6 +3,7 @@ imports = [ ./browser.nix ./chat.nix + ./editor.nix ./email.nix ./kdenlive.nix ./mangohud.nix -- cgit v1.3