chore(home): cleanup modules
Some checks failed
Continuous Integration / Checks (push) Has been cancelled

This commit is contained in:
Tim Schubert 2025-10-10 22:57:02 +02:00
parent 5ec7575655
commit 532612a5a6
No known key found for this signature in database
27 changed files with 272 additions and 1238 deletions

View file

@ -1,27 +0,0 @@
{
config,
pkgs,
lib,
...
}:
let
cfg = config.dadada.home.helix;
in
{
options.dadada.home.helix = {
enable = lib.mkEnableOption "Enable helix editor";
package = lib.mkOption {
type = lib.types.package;
description = "Helix editor package to use";
default = pkgs.helix;
};
};
config = lib.mkIf cfg.enable {
home.file.".config/helix".source = ./config;
home.packages = [
cfg.package
#pkgs.nixd
];
};
}