Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

feat(helium): linux builder

+20 -12
+12 -12
flake.lock
··· 7 7 ] 8 8 }, 9 9 "locked": { 10 - "lastModified": 1744478979, 11 - "narHash": "sha256-dyN+teG9G82G+m+PX/aSAagkC+vUv0SgUw3XkPhQodQ=", 10 + "lastModified": 1745816321, 11 + "narHash": "sha256-Gyh/fkCDqVNGM0BWvk+4UAS17w2UI6iwnbQQCmc1TDI=", 12 12 "owner": "LnL7", 13 13 "repo": "nix-darwin", 14 - "rev": "43975d782b418ebf4969e9ccba82466728c2851b", 14 + "rev": "4515dacafb0ccd42e5395aacc49fd58a43027e01", 15 15 "type": "github" 16 16 }, 17 17 "original": { ··· 38 38 }, 39 39 "hardware": { 40 40 "locked": { 41 - "lastModified": 1745503349, 42 - "narHash": "sha256-bUGjvaPVsOfQeTz9/rLTNLDyqbzhl0CQtJJlhFPhIYw=", 41 + "lastModified": 1745955289, 42 + "narHash": "sha256-mmV2oPhQN+YF2wmnJzXX8tqgYmUYXUj3uUUBSTmYN5o=", 43 43 "owner": "NixOS", 44 44 "repo": "nixos-hardware", 45 - "rev": "f7bee55a5e551bd8e7b5b82c9bc559bc50d868d1", 45 + "rev": "72081c9fbbef63765ae82bff9727ea79cc86bd5b", 46 46 "type": "github" 47 47 }, 48 48 "original": { ··· 97 97 }, 98 98 "nixpkgs": { 99 99 "locked": { 100 - "lastModified": 1745526057, 101 - "narHash": "sha256-ITSpPDwvLBZBnPRS2bUcHY3gZSwis/uTe255QgMtTLA=", 100 + "lastModified": 1745930157, 101 + "narHash": "sha256-y3h3NLnzRSiUkYpnfvnS669zWZLoqqI6NprtLQ+5dck=", 102 102 "owner": "nixos", 103 103 "repo": "nixpkgs", 104 - "rev": "f771eb401a46846c1aebd20552521b233dd7e18b", 104 + "rev": "46e634be05ce9dc6d4db8e664515ba10b78151ae", 105 105 "type": "github" 106 106 }, 107 107 "original": { ··· 113 113 }, 114 114 "nixpkgs-stable": { 115 115 "locked": { 116 - "lastModified": 1745487689, 117 - "narHash": "sha256-FQoi3R0NjQeBAsEOo49b5tbDPcJSMWc3QhhaIi9eddw=", 116 + "lastModified": 1745921652, 117 + "narHash": "sha256-hEAvEN+y/OQ7wA7+u3bFJwXSe8yoSf2QaOMH3hyTJTQ=", 118 118 "owner": "nixos", 119 119 "repo": "nixpkgs", 120 - "rev": "5630cf13cceac06cefe9fc607e8dfa8fb342dde3", 120 + "rev": "b000159bba69b0106a42f65e52dbf27f77aca9d3", 121 121 "type": "github" 122 122 }, 123 123 "original": {
+8
machines/darwin/helium/default.nix
··· 35 35 git-filter-repo 36 36 ]; 37 37 38 + # Linux builder 39 + nix = { 40 + linux-builder.enable = true; 41 + 42 + # This line is a prerequisite 43 + settings.trusted-users = [ "@admin" ]; 44 + }; 45 + 38 46 # Common system configurations 39 47 gems.system.garbageCollector.enable = true; 40 48