dots/modules/home-manager/bundles/dev.nix
2025-10-07 23:43:56 +11:00

19 lines
290 B
Nix

{
config,
lib,
...
}:
let
feature = "dev";
in
{
config = lib.mkIf config.${feature}.enable {
# keep-sorted start
zed-editor.enable = lib.mkDefault true;
# keep-sorted end
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}