nix-config/modules/nix/groups/base.nix
smayzy f85aad4f95
Some checks failed
nixos config pipeline / show-flake (push) Successful in 40s
nixos config pipeline / deploy (push) Failing after 50s
add dev doc
2026-04-26 15:17:28 +02:00

23 lines
425 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.base = mkOption {
type = types.bool;
default = false;
description = "base settings";
};
config = mkIf config.smayzy.base {
smayzy = {
base-cli-pkgs.enable = true;
fzf.enable = true;
nh.enable = true;
nvf.enable = true;
zsh.enable = true;
};
documentation.dev.enable = true;
};
}