nix-config/home/helix/default.nix
Tim Schubert 532612a5a6
Some checks failed
Continuous Integration / Checks (push) Has been cancelled
chore(home): cleanup modules
2025-10-10 22:57:02 +02:00

26 lines
397 B
Nix

{
config,
pkgs,
lib,
...
}:
let
cfg = config.dadada.home.helix;
in
{
options.dadada.home.helix = {
package = lib.mkOption {
type = lib.types.package;
description = "Helix editor package to use";
default = pkgs.helix;
};
};
config = {
home.file.".config/helix".source = ./config;
home.packages = [
cfg.package
#pkgs.nixd
];
};
}