From d9bea0e67926e8bea5f9b4fb3c3baa596aeddc5f Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Thu, 27 Nov 2025 15:39:35 +0000 Subject: [PATCH] add(helix): added helix module --- nix/modules/helix/default.nix | 4 ++++ nix/modules/helix/home.nix | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 nix/modules/helix/default.nix create mode 100644 nix/modules/helix/home.nix diff --git a/nix/modules/helix/default.nix b/nix/modules/helix/default.nix new file mode 100644 index 0000000..fb4af30 --- /dev/null +++ b/nix/modules/helix/default.nix @@ -0,0 +1,4 @@ +_: { + home = ./home.nix; + # nixos: ./nixos.nix; +} diff --git a/nix/modules/helix/home.nix b/nix/modules/helix/home.nix new file mode 100644 index 0000000..659270d --- /dev/null +++ b/nix/modules/helix/home.nix @@ -0,0 +1,25 @@ +{ + config, + lib, + inputs, + pkgs, + home, + system, + ... +}: +let + cfg = config.modules.helix; +in +{ + options.modules.helix = { + enable = lib.mkEnableOption "Blender configuration module"; + }; + # whole bottles config including addons is too fat to include here + config = lib.mkIf cfg.enable { + programs.helix = { + enable = true; + }; + }; + # nix'ing a bottles config is most likely not possible + # could probs install bottles addons through nix since they are fat fat mega fat to install TODO +}