nixos/modules/base/defaults.nix

10 lines
194 B
Nix
Raw Normal View History

2025-08-21 10:31:50 +02:00
{lib, ...}: {
options.fireproof.base.defaults = {
2025-02-18 20:17:57 +01:00
terminal = lib.mkOption {
type = lib.types.str;
2026-01-20 23:55:02 +01:00
default = "ghostty";
2025-02-18 20:17:57 +01:00
description = "The terminal to use";
};
};
}