aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-29 07:09:29 -0300
committerEuAndreh <eu@euandre.org>2020-08-29 07:12:47 -0300
commit0460f6bf329eca1eb7c311d2299c31f1dc3e8f5e (patch)
tree00dee65f7252784b62a71b25d608bfea3ed8e3d4
parentAdd scripts/test-hook.sh (diff)
downloadeuandre.org-0460f6bf329eca1eb7c311d2299c31f1dc3e8f5e.tar.gz
euandre.org-0460f6bf329eca1eb7c311d2299c31f1dc3e8f5e.tar.xz
default.nix: Don't use $NIXPKGS from environment
Diffstat (limited to '')
-rw-r--r--.build.yml2
-rw-r--r--default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/.build.yml b/.build.yml
index d730ae4..2dce81d 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,6 +1,4 @@
image: nixos/unstable
-repositories:
- nixpkgs: https://nixos.org/channels/nixpkgs-unstable
triggers:
- condition: failure
action: email
diff --git a/default.nix b/default.nix
index 8df8ce0..2d35725 100644
--- a/default.nix
+++ b/default.nix
@@ -1,4 +1,6 @@
-let pkgs = import <nixpkgs> { };
+let
+ pkgs = import (fetchTarball
+ "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") { };
in rec {
utils = import ./utils.nix {
pkgs = pkgs;