nixos/modules/base/defaults.nix

9 lines
167 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;
description = "The terminal to use";
};
};
}