summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-24 14:06:04 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-04-25 16:44:38 +0200
commit1d4b21ef42a41fcecc254f61f279ad306f41e6b3 (patch)
tree6e2cc9500ac56590d4c7b8fcdd3be22914579676 /nixos/modules/system
parent60f5659dad9ee8dc8b55f5ec814cd50cd6a8ca96 (diff)
downloadnixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar.gz
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar.bz2
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar.lz
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar.xz
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.tar.zst
nixlib-1d4b21ef42a41fcecc254f61f279ad306f41e6b3.zip
treewide: Use correct output of config.nix.package in non-string contexts
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/loader/gummiboot/gummiboot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
index 6c201eb8212f..69ad2c6d44f4 100644
--- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
+++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
@@ -14,7 +14,7 @@ let
 
     inherit (pkgs) python gummiboot;
 
-    nix = config.nix.package;
+    nix = config.nix.package.out;
 
     timeout = if cfg.timeout != null then cfg.timeout else "";