fix(ops/nixos): Pin systems to stable channel

NixOS unstable has some software I want when building things, but it's
also broken.

This pins systems to the stable channel for now.
This commit is contained in:
Vincent Ambo 2020-05-22 20:46:38 +01:00
parent c25281820f
commit 56261f1c08
3 changed files with 5 additions and 5 deletions

View file

@ -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: {

View file

@ -2,7 +2,7 @@
{ depot, lib, ... }:
config: let
nixpkgs = import depot.third_party.nixpkgsSrc {
nixpkgs = import depot.third_party.stableNixpkgsSrc {
config.allowUnfree = true;
};