dotfiles/nix-conf/home/includes/darwin.nix

46 lines
777 B
Nix

{ 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"; }));
};
}