this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Try adding nix-homebrew to flake.nix

+14
+14
.config/flake.nix
··· 28 28 url = "flake:home-manager/release-24.05"; 29 29 inputs.nixpkgs.follows = "nixpkgs"; 30 30 }; 31 + nix-homebrew = { 32 + url = "github:zhaofengli-wip/nix-homebrew"; 33 + inputs.nixpkgs.follows = "nixpkgs-darwin"; 34 + inputs.nix-darwin.follows = "nix-darwin"; 35 + }; 31 36 }; 32 37 33 38 outputs = inputs @ { self, nixpkgs, nix-darwin, home-manager, ... }: ··· 72 77 73 78 modules = [ 74 79 ./nix-darwin/configuration.nix 80 + nix-homebrew.darwinModules.nix-homebrew 81 + { 82 + nix-homebrew = { 83 + enable = true; 84 + enableRosetta = true; 85 + inherit user; 86 + # TODO: Declarative tap management 87 + }; 88 + } 75 89 { 76 90 # home-manager module expects this to be set: 77 91 users.users.${user}.home = "/Users/${user}";