about summary refs log blame commit diff stats
path: root/nix-conf/home/includes/darwin.nix
blob: 9f049275950ed4772ef7b4408fb1c0d722ef0314 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14


                      
                    









                                                                         
           


                               
            


                                                
          









                               





                            





                                                                                                             
{ config, pkgs, ... }:
{
  imports = [
    ./dev-common.nix
  ];

  home.packages = with pkgs; [
    awscli2
    coreutils
    curl
    diffutils
    ((emacsPackagesFor emacsMacport).emacsWithPackages(ps: [ ps.vterm ]))
    findutils
    gh
    gh-dash
    #gnused
    #adoptopenjdk-hotspot-bin-8
    #lima
    minikube
    mpv
    mu
    nix # on darwin we are not using nixos (duh)
    nodejs
    openvpn
    pinentry_mac
    pgcli
    pgformatter
    postgresql
    #python310Packages.sqlparse
    sqls
    wget
  ];

  nix.settings = {
    sandbox = true;
    keep-outputs = true;
    keep-derivations = true;
  };

  programs.java = {
    enable = true;
    #package = (pkgs.jdk8.overrideAttrs (_: { postPatch = "ln -nsf ../zulu-8.jdk/Contents/Home/man man"; }));
  };
}