summaryrefslogtreecommitdiff
path: root/hm/editors/helix.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-05-03 22:09:25 +0200
committeradikro <adikro@disroot.org>2026-05-03 22:09:25 +0200
commit18e7f651ce33b1544178f444c6bd3fbaf44fc831 (patch)
treeca720cbd6e2a2d49a7e4070915288b079fef75be /hm/editors/helix.nix
parent427b01da7b5be8a27f67bae13e2808d946ed22d8 (diff)
hm changes
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;
- };
- };
-}