nix-config/modules/nix/groups/base.nix
smayzy 092579af98
All checks were successful
nix flake show / show-flake (push) Successful in 27s
format with nixfmt to nixpkgs standarts
2025-07-24 19:19:46 +02:00

22 lines
388 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 = {
nvf.enable = true;
nh.enable = true;
fzf.enable = true;
zsh.enable = true;
base-cli-pkgs.enable = true;
};
};
}