summaryrefslogtreecommitdiff
path: root/darwinConfigurations/mairon/default.nix
blob: 807b4f8f6acff91efe5cfe1d5909d84828d7b55a (plain)
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
{
  lib,
  this,
  ...
}:
with lib; {
  imports = [
    ./hidden.nix
  ];

  homebrew = {
    brews = [
      {name = "carthage";}
      {name = "sourcery";}
      {name = "xcodegen";}
    ];
    casks = [
      {name = "burp-suite";}
      {name = "cocoapods";}
      {name = "docker";}
      {name = "obs";}
      {name = "openlens";}
      {name = "postman";}
      {name = "shadowsocksx-ng";}
      {name = "vial";}
      {name = "wireshark";}
      {name = "xcbeautify";}
      {name = "xcodes";}
    ];
  };

  networking = {
    computerName = mkForce this.hostname;
    hostName = mkForce null; # We don't want to override this.
  };
}