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

46 lines
777 B
Nix
Raw Normal View History

2022-09-10 14:51:06 +00:00
{ config, pkgs, ... }:
{
imports = [
2022-10-22 13:37:23 +00:00
./dev-common.nix
2022-09-10 14:51:06 +00:00
];
home.packages = with pkgs; [
awscli2
coreutils
curl
diffutils
((emacsPackagesFor emacsMacport).emacsWithPackages(ps: [ ps.vterm ]))
findutils
gh
2022-11-14 20:26:20 +00:00
gh-dash
2022-09-10 14:51:06 +00:00
#gnused
#adoptopenjdk-hotspot-bin-8
#lima
2022-11-01 11:58:31 +00:00
minikube
2022-09-10 14:51:06 +00:00
mpv
mu
nix # on darwin we are not using nixos (duh)
2022-11-01 13:36:21 +00:00
nodejs
2022-09-10 14:51:06 +00:00
openvpn
pinentry_mac
pgcli
pgformatter
postgresql
#python310Packages.sqlparse
sqls
wget
];
2022-11-26 16:07:37 +00:00
nix.settings = {
sandbox = true;
keep-outputs = true;
keep-derivations = true;
};
2022-09-10 14:51:06 +00:00
programs.java = {
enable = true;
#package = (pkgs.jdk8.overrideAttrs (_: { postPatch = "ln -nsf ../zulu-8.jdk/Contents/Home/man man"; }));
};
}