summaryrefslogtreecommitdiff
path: root/hosts/morpheus/configuration.nix
blob: 395494c7f79f4a3f420cb3888484505e380de96e (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
{ config, pkgs, ... }:

{
  services.nix-daemon.enable = true;
  users.users.shubh.home = "/Users/shubh";
  programs.zsh.enable = true;
  nixpkgs.config.allowUnfree = true;
  security.pki.certificateFiles = [ "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" "/etc/ssl/certs/zscaler.pem" ];

  homebrew = {
    enable = true;
    casks = [ "brave-browser" "karabiner-elements" ];
  };

  nix = {
    extraOptions = ''
      experimental-features = nix-command flakes
    '';
  };

  environment.pathsToLink = ["/share/zsh"];
  system.activationScripts.applications.text = pkgs.lib.mkForce (
    ''
      echo "setting up ~/Applications..." >&2
      rm -rf ~/Applications/Nix\ Apps
      mkdir -p ~/Applications/Nix\ Apps
      for app in $(find ${config.system.build.applications}/Applications -maxdepth 1 -type l); do
        src="$(/usr/bin/stat -f%Y "$app")"
        cp -r "$src" ~/Applications/Nix\ Apps
      done
    ''
  );
}