summaryrefslogtreecommitdiff
path: root/home/iterm2/default.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-02-20 09:08:54 +0100
committerLinnnus <[email protected]>2024-02-20 09:09:08 +0100
commite275224ea8f3182916e715861a09d8a5a13147ca (patch)
treeb82ddf94e21d34ceee2d25e5cecec3cc686d24ba /home/iterm2/default.nix
parent476150fa1384b2c77e527f3f138d458cdc05bd29 (diff)
reorg: Move muhammed-specific configuration into hosts/muhammed/home
Diffstat (limited to 'home/iterm2/default.nix')
-rw-r--r--home/iterm2/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/home/iterm2/default.nix b/home/iterm2/default.nix
deleted file mode 100644
index d868e57..0000000
--- a/home/iterm2/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-# This file configures iterm2. Note that the actual definition of iTerm2 for
-# home-manager is in `modules/home-manager/iterm2`. *That* file declares
-# `options.programs.iterm2.enable`.
-{
- pkgs,
- lib,
- ...
-}: let
- inherit (lib) mkIf;
- inherit (pkgs.stdenv) isDarwin;
-in {
- config = mkIf isDarwin {
- home.packages = with pkgs; [imgcat];
-
- programs.iterm2 = {
- enable = true;
- # config = {
- # # Use the minimal tab style.
- # # See: https://github.com/gnachman/iTerm2/blob/bd40fba0611fa94684dadf2478625f2a93eb6e47/sources/iTermPreferences.h#L29
- # TabStyleWithAutomaticOption = 5;
- # };
-
- shellIntegration.enableZshIntegration = true;
- };
- };
-}