about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-22T19·46+0100
committerVincent Ambo <tazjin@google.com>2020-05-22T19·50+0100
commit56261f1c0813744b1a07f4a5a7e7a995a7e9fbcf (patch)
tree318e57f25e3a803c1529537a31517c86f1ebb43f /ops
parentc25281820f886891ec68192ff3eacf18d200ae40 (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')
-rw-r--r--ops/nixos/camden/default.nix2
-rw-r--r--ops/nixos/nugget/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix
index 2eb8976da1..57cc696e4f 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: {
diff --git a/ops/nixos/nugget/default.nix b/ops/nixos/nugget/default.nix
index 3bb46166bb..6d2761deb8 100644
--- a/ops/nixos/nugget/default.nix
+++ b/ops/nixos/nugget/default.nix
@@ -2,7 +2,7 @@
 { depot, lib, ... }:
 
 config: let
-  nixpkgs = import depot.third_party.nixpkgsSrc {
+  nixpkgs = import depot.third_party.stableNixpkgsSrc {
     config.allowUnfree = true;
   };