From 23252595fff09dc43abd19e2b1fb3d50fc3aad7c Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 26 Sep 2018 23:38:53 +0200 Subject: [PATCH] fix lib import --- config.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.nix b/config.nix index b88df15..e3056e2 100644 --- a/config.nix +++ b/config.nix @@ -1,10 +1,10 @@ let - lib = import .lib; + lib = (import {}).lib; in { - config.clementine.spotify = false; - config.whitelistedLicenses = with lib.licenses; [ wtfpl ]; + clementine.spotify = false; + whitelistedLicenses = with lib.licenses; [ wtfpl ]; }