blob: c99c683ff280aa44e8cba96d1f3d0d2f9696aaf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
];
};
}
|