ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
{ pkgs, ... }:

{

  homebrew.enable = true;
  homebrew.casks  = [ "iterm2" ];

  system.defaults.CustomUserPreferences = {
    "com.googlecode.iterm2" = {
      # Disable iTerm's annoying promt when quitting it
      PromptOnQuit = false;

      SUEnableAutomaticChecks = 0;

      # Use 'Minimal' Theme
      TabStyleWithAutomaticOption = 5;
    };
  };

}