dotfiles/modules/config/terminal.nix

15 lines
249 B
Nix
Raw Normal View History

2024-10-25 07:35:36 +02:00
{ lib
, ...
}:
with lib;
{
options.my.terminal = {
package = mkOption {
2024-11-22 19:47:22 +01:00
description = "Terminal emulator package to use. Gets converted to path of bin automatically.";
2024-10-25 07:35:36 +02:00
type = types.package;
apply = lib.getExe;
};
};
}