10 lines
245 B
Nix
10 lines
245 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
options.my.terminal = {
|
|
package = mkOption {
|
|
description = "Terminal emulator package to use. Gets converted to path of bin automatically.";
|
|
type = types.package;
|
|
apply = lib.getExe;
|
|
};
|
|
};
|
|
}
|