all repos — nixfiles @ 9949b2ab99d20b6a85ef97bedbd66f7d6201ff59

System and user configuration, managed by nix and home-manager

user/marvin.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{ config, pkgs, ... }: {
  imports = [
    ./settings/base.nix
    ./settings/development/base.nix
    ./settings/development/javascript.nix
    ./settings/development/golang.nix
    ./settings/development/vlang.nix
    ./settings/development/web.nix
    ./settings/darwin.nix
    ./settings/emacs.nix
    ./settings/fish.nix
    ./settings/git.nix
    ./settings/nixpkgs.nix
    ./settings/ssh.nix
    ./settings/tabnine.nix
    ./settings/user-interface.nix
    ./settings/nix.nix
  ];

  home.username = "alan";
  home.homeDirectory = "/Users/alan";
  home.stateVersion = "22.11";
  home.packages = with pkgs; [
    picocom
    ollama
  ];

  launchd.agents = {
    ollama = {
      enable = true;
      config = {
        ProgramArguments = [ "/Users/alan/.local/state/nix/profile/bin/ollama" "serve" ];
        RunAtLoad = true;
        KeepAlive = true;
        WorkingDirectory = "/Users/alan";
        EnvironmentVariables = {
          OLLAMA_HOST = "[::]:11434";
          OLLAMA_KEEP_ALIVE = "-1"; # keep models in memory forever
          OLLAMA_FLASH_ATTENTION = "1"; # significantly reduce memory usage as the context size grows
        };
      };
    };
    ollama-preload = {
      enable = true;
      config = {
        ProgramArguments = [
          "/Users/alan/.local/state/nix/profile/bin/ollama"
          "run"
          "llama3.3"
          ""
        ];
        RunAtLoad = true;
        KeepAlive = false;
        WorkingDirectory = "/Users/alan";
      };
    };
  };

  launchd.agents.colima = {
    enable = true;
    config = {
      ProgramArguments = [ "/Users/alan/.local/state/nix/profile/bin/colima" "start" ];
      RunAtLoad = true;
      # It doesn't run in the foreground, yet...
      # KeepAlive = true;
      WorkingDirectory = "/Users/alan";
      StandardOutPath = "/Users/alan/Library/Logs/colima.log";
      StandardErrorPath = "/Users/alan/Library/Logs/colima.log";
      EnvironmentVariables = {
        HOME = "/Users/alan";
        XDG_CONFIG_HOME = config.xdg.configHome;
      };
    };
  };

  targets.darwin.defaults = {
    NSGlobalDomain = {
      AppleKeyboardUIMode = 2;
      ApplePressAndHoldEnabled = false;
      AppleShowScrollBars = "Always";
    };
    "com.apple.controlcenter" = {
      "NSStatusItem Visible Sound" = true;
      "NSStatusItem Visible FocusModes" = true;
    };
    "com.apple.dock" = {
      autohide = true;
      autohide-delay = 0.05;
      autohide-time-modifier = 0.12;
      expose-animation-duration = 0.5;
      launchanim = false;
      mineffect = "scale";
      minimize-to-application = true;
      scroll-to-open = true;
      show-process-indicators = false;
      static-only = true;
    };
    "com.apple.finder" = {
      _FXSortFoldersFirst = true;
      AppleShowAllExtensions = true;
      FXDefaultSearchScope = "SCcf"; # current folder
      FXEnableExtensionChangeWarning = false;
      FXPreferredViewStyle = "clmv"; # column view
      FXRemoveOldTrashItems = true;
      NewWindowTarget = "Home";
      NSDocumentSaveNewDocumentsToCloud = false;
    };
    "com.apple.menuextra.clock" =
      let
        # if-space = 0;
        always = 1;
        never = 2;
      in
      {
        Show24Hour = true;
        ShowDate = never;
      };
    "com.apple.hitoolbox" = {
      AppleFnUsageType = "Do Nothing";
    };
    "com.apple.multitouchtouchpad" = {
      TrackpadThreeFingerTapGesture = 2; # Lookup
    };
    "com.apple.mouse" = {
      linear = true;
    };
    "com.apple.safari" = {
      ShowFullURLInSmartSearchField = true;
    };
    "com.apple.screensaver" = {
      askForPasswordDelay = 60;
    };
    "com.apple.siri" = {
      StatusMenuVisible = false;
    };
    "com.apple.textedit" = {
      RichText = false;
    };
    "com.apple.timemachine" = {
      DoNotOfferNewDisksForBackup = true;
    };
  };
}