diff options
author | Ben Sima <ben@bsima.me> | 2019-02-19 11:39:30 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-02-19 11:39:30 -0800 |
commit | 2af2b4eb6f22d418101b1df79e8cae94555b01fd (patch) | |
tree | 498fb6917dc928b7cc0b6a9afe39e519bd2dc2f8 /nixos.nix | |
parent | 76272ddf601795a9747d02eeb466b542555ac4ab (diff) |
Fetch pinned nixpkgs as tarball
This should speed up initial building (e.g. on a builds.sr.ht).
Diffstat (limited to 'nixos.nix')
-rw-r--r-- | nixos.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # Nix config for the main biz machine. let - nixpkgs = fetchGit (import ./pkgs.nix); + nixpkgs = builtins.fetchTarball (import ./pkgs.nix); in import "${nixpkgs}/nixos" { system = "x86_64-linux"; |