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

16 lines
234 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
};
};
}