mirror of
https://github.com/RGBCube/ncc
synced 2025-09-13 01:27:56 +00:00
16 lines
382 B
Nix
16 lines
382 B
Nix
{ nix-homebrew, homebrew-core, homebrew-cask, config, lib, ... }: let
|
|
inherit (lib) enabled;
|
|
in {
|
|
imports = [ nix-homebrew.darwinModules.nix-homebrew ];
|
|
|
|
homebrew = enabled;
|
|
|
|
nix-homebrew = enabled {
|
|
user = config.system.primaryUser;
|
|
|
|
taps."homebrew/homebrew-core" = homebrew-core;
|
|
taps."homebrew/homebrew-cask" = homebrew-cask;
|
|
|
|
mutableTaps = false;
|
|
};
|
|
}
|