From cfc20a13c5104b67f04d06cc3e813305ba245c2c Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 14 Jun 2020 22:51:00 +0800 Subject: [PATCH] nixops: use git for nixos-unstable instead of (stale) channel --- nixops/desktop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixops/desktop.nix b/nixops/desktop.nix index e7715fd..04760eb 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://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {}; + pkgs-unstable = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) {}; in { deployment.targetHost = host;