Update masApps and add Homebrew shell initialization
Convert masApps from list to set for better structure consistency. Add initialization for Homebrew in the Fish shell to ensure the environment is correctly set up.
This commit is contained in:
parent
18e641daf8
commit
3390c39901
|
@ -39,5 +39,8 @@ in
|
||||||
# With mutableTaps disabled, taps can no longer be added imperatively with `brew tap`.
|
# With mutableTaps disabled, taps can no longer be added imperatively with `brew tap`.
|
||||||
mutableTaps = false;
|
mutableTaps = false;
|
||||||
};
|
};
|
||||||
|
programs.fish.shellInit = ''
|
||||||
|
/opt/homebrew/bin/brew shellenv | source
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ with lib.metacfg;
|
||||||
"libusb"
|
"libusb"
|
||||||
"mas"
|
"mas"
|
||||||
];
|
];
|
||||||
masApps = [ ];
|
masApps = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
metacfg = {
|
metacfg = {
|
||||||
|
|
Loading…
Reference in a new issue