nixos/modules/base/defaults.nix
2026-01-20 23:55:02 +01:00

9 lines
194 B
Nix

{lib, ...}: {
options.fireproof.base.defaults = {
terminal = lib.mkOption {
type = lib.types.str;
default = "ghostty";
description = "The terminal to use";
};
};
}