nixops: use git for nixos-unstable instead of (stale) channel

master
Sebastien Bourdeauducq 2020-06-14 22:51:00 +08:00
parent 8fc3860e9d
commit cfc20a13c5
1 changed files with 1 additions and 1 deletions

View File

@ -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;