fix default compat

This commit is contained in:
David Arnold 2021-04-28 14:40:30 -05:00
parent 52c6472e90
commit 599ce2def0
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08

View file

@ -1,6 +1,10 @@
{ pkgs ? import (fetchTarball { let
url = "https://github.com/xtruder/nixpkgs/archive/pkgs/k3s/init.tar.gz"; fetch = import ./lib/compat.nix;
}) {}, nixosPath ? toString <nixpkgs/nixos>, lib ? pkgs.lib }: in
{ pkgs ? import (fetch "nixpkgs") { }
, nixosPath ? toString (fetch "nixpkgs") + "/nixos"
, lib ? pkgs.lib
}:
with lib; with lib;