nix-config/modules/nix/groups/base.nix

22 lines
395 B
Nix

{ lib, config, pkgs, ... }:
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;
};
};
}