This commit is contained in:
Harald Hoyer 2024-01-11 10:26:46 +00:00
parent 66c05f9093
commit 44067d35ff
205 changed files with 9037 additions and 338 deletions

View file

@ -0,0 +1,18 @@
{ 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
];
};
}