nixos/modules/base/default-apps.nix
Nickolaj Jepsen 638ef7093e update
2025-02-21 00:18:30 +01:00

8 lines
166 B
Nix

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