19 lines
336 B
Nix
19 lines
336 B
Nix
{ options, config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with lib.plusultra;
|
|
let
|
|
cfg = config.plusultra.apps.iterm2;
|
|
in
|
|
{
|
|
options.plusultra.apps.iterm2 = with types; {
|
|
enable = mkBoolOpt false "Whether or not to enable iTerm2.";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
iterm2
|
|
];
|
|
};
|
|
}
|