fix references

This commit is contained in:
Noah Masur
2025-02-25 10:49:57 -05:00
parent 50863e7232
commit eed097f270
8 changed files with 28 additions and 25 deletions

View File

@ -24,9 +24,6 @@ in
fi
'';
# Add homebrew paths to CLI path
home.sessionPath = [ "/opt/homebrew/bin/" ];
homebrew = {
enable = true;
onActivation = {

View File

@ -59,7 +59,7 @@ in
};
# User-level settings
activationScripts.postUserActivation.text = ''
system.activationScripts.postUserActivation.text = ''
echo "Show the ~/Library folder"
chflags nohidden ~/Library
'';

View File

@ -15,7 +15,7 @@ in
config = lib.mkIf cfg.enable {
# User-level settings
activationScripts.postUserActivation.text = ''
system.activationScripts.postUserActivation.text = ''
echo "Reduce Menu Bar padding"
defaults write -globalDomain NSStatusItemSelectionPadding -int 6
defaults write -globalDomain NSStatusItemSpacing -int 6

View File

@ -14,7 +14,7 @@ in
config = lib.mkIf cfg.enable {
nmasur.presets = {
nmasur.presets.programs = {
fish = lib.mkDefault true;
homebrew = lib.mkDefault true;
};
@ -27,11 +27,6 @@ in
"notunes" # Don't launch Apple Music with the play button
];
# Add homebrew paths to CLI path
home.sessionPath = [
"/opt/homebrew/opt/trash/bin"
];
# Include home-manager config in nix-darwin
home-manager = {
sharedModules = [ ../../../../home-manager ];