about summary refs log tree commit diff stats
path: root/nix-conf/home/includes/darwin.nix
blob: aafe803dac1b8d2ba59c4846737eea5cda72e2e1 (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
37
38
39
{ 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
  ];

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