diff options
author | tv <tv@krebsco.de> | 2015-03-24 18:48:29 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-05-19 23:14:32 +0200 |
commit | acf156286187c5297d3315005ab089c18adafc17 (patch) | |
tree | 93c7548021e384e58ecfec7fc28431413e6fb8f8 | |
parent | f9465b614a22ceba725ae497a38fcb5549be3f92 (diff) |
host wu: explicitly inherit majmin
-rw-r--r-- | wu.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ { config, pkgs, ... }: -with (import ./lib { inherit pkgs; }); +let + lib = import ./lib { inherit pkgs; }; + + inherit (lib) majmin; +in { imports = [ |