about summary refs log tree commit diff stats
path: root/nixconf/darwin.nix
blob: 735b80d6c00a66040b5d3bc6af043cc68c03d1cb (plain) (blame)
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
{ config, pkgs, ... }:
{
  imports = [
    ./clojure.nix
  ];

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

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