.dotfiles/dot_config/flake/home/hinge/darwin.nix
2025-02-12 15:34:33 -05:00

40 lines
720 B
Nix

{
pkgs,
lib,
...
}: {
# services.aerospace.enable = true;
imports = [
# ../fish.nix
];
nix.extraOptions =
''
auto-optimise-store = true
experimental-features = nix-command flakes
''
+ lib.optionalString (pkgs.system == "aarch64-darwin") ''
extra-platforms = x86_64-darwin aarch64-darwin
'';
users.knownUsers = ["tyler.mayoff"];
users.users."tyler.mayoff" = {
uid = 502;
shell = pkgs.fish;
};
services.sketchybar.enable = true;
system.stateVersion = 5;
environment.systemPackages = with pkgs; [
pinentry_mac
llvmPackages_19.clang-tools
# android-tools
jdk17
];
programs.fish.enable = true;
programs.zsh.enable = true;
}