nixos/modules/base/default-apps.nix

9 lines
166 B
Nix
Raw Normal View History

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