diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-22T19·46+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-22T19·50+0100 |
commit | 56261f1c0813744b1a07f4a5a7e7a995a7e9fbcf (patch) | |
tree | 318e57f25e3a803c1529537a31517c86f1ebb43f /ops/nixos/camden/default.nix | |
parent | c25281820f886891ec68192ff3eacf18d200ae40 (diff) |
fix(ops/nixos): Pin systems to stable channel r/814
NixOS unstable has some software I want when building things, but it's also broken. This pins systems to the stable channel for now.
Diffstat (limited to 'ops/nixos/camden/default.nix')
-rw-r--r-- | ops/nixos/camden/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix index 2eb8976da138..57cc696e4f1c 100644 --- a/ops/nixos/camden/default.nix +++ b/ops/nixos/camden/default.nix @@ -2,7 +2,7 @@ { depot, pkgs, lib, ... }: config: let - nixpkgs = import depot.third_party.nixpkgsSrc { + nixpkgs = import depot.third_party.stableNixpkgsSrc { config.allowUnfree = true; }; in lib.fix(self: { |