yumeami/home/programs/terminal/hyperfine.nix

15 lines
246 B
Nix
Executable file

{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.hyperfine;
in {
options.hyperfine.enable = mkEnableOption "Hyperfine";
config = mkIf cfg.enable {
home.packages = with pkgs; [hyperfine];
};
}