From dfa0cc7fea8e8d64a9bb6b2134321b40d225fdd2 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 13 Oct 2020 16:30:31 +0800 Subject: [PATCH] nixops: use 20.09 for unstable packages --- nixops/desktop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixops/desktop.nix b/nixops/desktop.nix index 7886a89..cee216b 100644 --- a/nixops/desktop.nix +++ b/nixops/desktop.nix @@ -3,7 +3,7 @@ { config, pkgs, ... }: let m-labs = import (fetchTarball https://nixbld.m-labs.hk/channel/custom/artiq/full/artiq-full/nixexprs.tar.xz) { inherit pkgs; }; - pkgs-unstable = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) {}; + pkgs-unstable = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-20.09.tar.gz) {}; in { deployment.targetHost = host;