nixos/modules/base/defaults.nix

10 lines
167 B
Nix
Raw Normal View History

{lib, ...}:
{
options.fireproof.base.defaults = {
2025-02-18 20:17:57 +01:00
terminal = lib.mkOption {
type = lib.types.str;
description = "The terminal to use";
};
};
}