diff options
Diffstat (limited to 'nix-conf/home/darwin.nix')
-rw-r--r-- | nix-conf/home/darwin.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/nix-conf/home/darwin.nix b/nix-conf/home/darwin.nix new file mode 100644 index 0000000..735b80d --- /dev/null +++ b/nix-conf/home/darwin.nix @@ -0,0 +1,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"; })); + }; +} + |