aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMolly Miller <knmcn@m-squa.red>2021-01-17 21:45:05 +0000
committerKatharina Fey <kookie@spacekookie.de>2021-01-18 10:48:28 +0100
commit1230ad1eb3cfadcb345b1de493ce746281e4f529 (patch)
tree70633f939dab07752412875bdefc7cf8cc76dbb8
parente51121182016d8b7b80c1f3024f93636628d3373 (diff)
libkookie: fix build script.
The build script doesn't pass the correct path to nixpkgs in the nix-build invocation, which causes build failures outside a standard libkookie-booted environment.
-rwxr-xr-xinfra/libkookie/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/libkookie/build b/infra/libkookie/build
index 4ce8da17effb..b4e24bdfa63b 100755
--- a/infra/libkookie/build
+++ b/infra/libkookie/build
@@ -14,7 +14,7 @@ function build {
NIXPKGS_ALLOW_UNFREE=1 \
nix build -f '<nixpkgs/nixos>' system \
-I nixos-config="$ROOT" \
- -I "nixpkgs=$DIR" \
+ -I "nixpkgs=$DIR/nixpkgs" \
-I "nixpkgs-overlays=$DIR/overlays" \
-I "home-manager=$DIR/home-manager" \
-I "modules=$DIR/modules" \