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

16 lines
245 B
Nix
Raw Normal View History

2024-01-27 06:25:14 +00:00
{ lib, pkgs, ... }:
with lib; {
options = {
defaultTerminal = mkOption {
default = "kitty";
type = types.str;
};
terminal = mkOption {
default = "${pkgs.kitty}/bin/kitty";
type = types.path;
};
};
}