Updated macos settings

This commit is contained in:
Tyler Mayoff 2025-02-12 15:34:33 -05:00
parent 7c09c1e289
commit 9aae46a78f
No known key found for this signature in database
GPG key ID: B62A5AFAD8E14845
6 changed files with 36 additions and 12 deletions

View file

@ -1,11 +1,28 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: {
# services.aerospace.enable = true;
imports = [
# ../fish.nix
];
users.users."tyler.mayoff".shell = pkgs.fish;
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;
@ -13,7 +30,11 @@
environment.systemPackages = with pkgs; [
pinentry_mac
];
llvmPackages_19.clang-tools
# android-tools
jdk17
];
programs.fish.enable = true;
programs.zsh.enable = true;
}