nix-config/home/modules/helix/default.nix
2022-11-01 19:37:02 +01:00

12 lines
276 B
Nix

{ config, pkgs, lib, ... }:
let
cfg = config.dadada.home.helix;
in
{
options.dadada.home.helix.enable = lib.mkEnableOption "Enable helix editor";
config = lib.mkIf cfg.enable {
home.file.".config/helix".source = ./config;
home.packages = [ pkgs.helix ];
};
}