summaryrefslogtreecommitdiff
path: root/darwinConfigurations/mairon/default.nix
blob: e0315613e1633bda3286b19f9c2e27a0ba11297e (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
37
38
39
40
{
  lib,
  this,
  pkgs,
  ...
}:
with lib; {
  imports = [
    ./hidden.nix
  ];

  nixfiles.modules.zathura.enable = mkForce false;

  hm.home.packages = with pkgs; [
    cocoapods
    xcodes
  ];

  homebrew = {
    brews = [
      {name = "carthage";}
      {name = "podman";}
      {name = "sourcery";}
      {name = "xcbeautify";}
      {name = "xcodegen";}
    ];
    casks = [
      {name = "obs";}
      {name = "openlens";}
      {name = "shadowsocksx-ng";}
      {name = "vial";}
      {name = "wireshark";}
    ];
  };

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