1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 01:27:56 +00:00

homebrew: init

This commit is contained in:
RGBCube 2025-07-31 16:42:37 +03:00
parent 419a2514b9
commit 51c02a78a2
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
6 changed files with 104 additions and 17 deletions

View file

@ -0,0 +1,16 @@
{ 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;
};
}