NixOS-Configuration/common/users/cameron/home-manager/options.nix

21 lines
319 B
Nix
Raw Normal View History

2024-01-27 06:25:14 +00:00
{ lib, pkgs, ... }:
with lib; {
options = {
term = mkOption {
default = "";
type = types.enum [ "" "kitty" "alacritty" ];
2024-01-27 06:25:14 +00:00
};
runInTerm = mkOption {
default = "";
type = types.str;
2024-01-27 06:25:14 +00:00
};
2024-04-01 05:40:51 +00:00
runInDangerTerm = mkOption {
default = "";
type = types.str;
};
2024-01-27 06:25:14 +00:00
};
}