nix-config/modules/nix/groups/base.nix
smayzy 66d9b83dc8
All checks were successful
nixos config pipeline / show-flake (push) Successful in 23s
nixos config pipeline / deploy (push) Successful in 17s
rearange
2025-10-09 18:02:47 +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 = {
base-cli-pkgs.enable = true;
fzf.enable = true;
nh.enable = true;
nvf.enable = true;
zsh.enable = true;
};
};
}