switch on darwin

This commit is contained in:
Noah Masur
2025-03-16 14:00:38 -04:00
parent 1833b4b46c
commit 98356634cd
9 changed files with 59 additions and 74 deletions

View File

@ -15,8 +15,8 @@ in
config = lib.mkIf cfg.enable {
nmasur.presets.programs = {
fish = lib.mkDefault true;
homebrew = lib.mkDefault true;
fish.enable = lib.mkDefault true;
homebrew.enable = lib.mkDefault true;
};
homebrew.brews = [
@ -27,18 +27,5 @@ in
"notunes" # Don't launch Apple Music with the play button
];
# Include home-manager config in nix-darwin
home-manager = {
sharedModules = [ ../../../../home-manager ];
# Use the system-level nixpkgs instead of Home Manager's
useGlobalPkgs = lib.mkDefault true;
# Install packages to /etc/profiles instead of ~/.nix-profile, useful when
# using multiple profiles for one user
useUserPackages = lib.mkDefault true;
};
};
}