my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

flake: update darwin & homebrew

isabel b9969542 0d24a464

+10 -10
+8 -8
flake.lock
··· 42 42 ] 43 43 }, 44 44 "locked": { 45 - "lastModified": 1767469770, 46 - "narHash": "sha256-Rv1kumaBqlqCvLjVYuzdA38btSyjSRvXZ8UtwalGcHo=", 45 + "lastModified": 1776732099, 46 + "narHash": "sha256-3NUfNnruKlKbxPS9jtX+hq6YU1jm0TWN/gp3ZSfTfb4=", 47 47 "owner": "isabelroses", 48 48 "repo": "nix-darwin", 49 - "rev": "1d46ab42afd10adf9751ab6cfba6b426bfb17e33", 49 + "rev": "1e2d8fbb375432a32b19bd9af8759b3f86f00541", 50 50 "type": "github" 51 51 }, 52 52 "original": { ··· 140 140 "brew-src": [] 141 141 }, 142 142 "locked": { 143 - "lastModified": 1773614241, 144 - "narHash": "sha256-Ou9E6jp2hQvM2/os+0DWvOMPAFGPYPXEVVUgC7imPTg=", 145 - "owner": "isabelroses", 143 + "lastModified": 1774720267, 144 + "narHash": "sha256-YYftFe8jyfpQI649yfr0E+dqEXE2jznZNcYvy/lKV1U=", 145 + "owner": "zhaofengli", 146 146 "repo": "nix-homebrew", 147 - "rev": "2789f55cd3fc93d602b33d7b08aa3fee3ca29176", 147 + "rev": "a7760a3a83f7609f742861afb5732210fdc437ed", 148 148 "type": "github" 149 149 }, 150 150 "original": { 151 - "owner": "isabelroses", 151 + "owner": "zhaofengli", 152 152 "repo": "nix-homebrew", 153 153 "type": "github" 154 154 }
+1 -1
flake.nix
··· 85 85 86 86 homebrew = { 87 87 type = "github"; 88 - owner = "isabelroses"; # zhaofengli 88 + owner = "zhaofengli"; 89 89 repo = "nix-homebrew"; 90 90 inputs.brew-src.follows = ""; 91 91 };
+1 -1
modules/darwin/brew/environment.nix
··· 16 16 }; 17 17 18 18 # we add howbrew to the PATH so we can execute all the apps it installs 19 - systemPath = [ config.homebrew.brewPrefix ]; 19 + systemPath = [ config.homebrew.prefix ]; 20 20 }; 21 21 }