dotfiles/modules/config/terminal.nix
2024-10-25 07:38:41 +02:00

13 lines
147 B
Nix

{ lib
, ...
}:
with lib;
{
options.my.terminal = {
package = mkOption {
type = types.package;
apply = lib.getExe;
};
};
}