summaryrefslogtreecommitdiff
path: root/hm/editors/helix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/editors/helix.nix')
-rw-r--r--hm/editors/helix.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/hm/editors/helix.nix b/hm/editors/helix.nix
deleted file mode 100644
index d20db0e..0000000
--- a/hm/editors/helix.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- cfg = config.hm.editors.helix;
-in
-{
- options.hm.editors.helix.enable = lib.mkEnableOption "enables helix editor";
- config = lib.mkIf cfg.enable {
- programs.helix = {
- enable = true;
- package = pkgs.helix;
- };
- };
-}