l: import <stockholm/lib>

This commit is contained in:
lassulus 2016-10-20 21:40:11 +02:00
parent 9375a3fb9b
commit 0f38de96e8
6 changed files with 6 additions and 8 deletions

View file

@ -1,10 +1,8 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with builtins; with import <stockholm/lib>;
with lib;
let let
inherit (config.krebs.lib) genid;
cfg = config.krebs.newsbot-js; cfg = config.krebs.newsbot-js;

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
with builtins; with import <stockholm/lib>;
{ {
imports = [ imports = [
../. ../.

View file

@ -2,7 +2,7 @@
let let
inherit (import <stockholm/krebs/4lib> { config = {}; inherit lib; }) inherit (import <stockholm/lib>)
genid genid
genid_signed genid_signed
; ;

View file

@ -2,7 +2,7 @@
with lib; with lib;
let let
inherit (import <stockholm/krebs/4lib> { config = {}; inherit lib; }) inherit (import <stockholm/lib>)
genid genid
head head
; ;

View file

@ -2,7 +2,7 @@
with lib; with lib;
let let
inherit (import <stockholm/krebs/4lib> { config = {}; inherit lib; }) inherit (import <stockholm/lib>)
genid genid
; ;

View file

@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let let
inherit (import <stockholm/krebs/4lib> { config = {}; inherit lib; }) inherit (import <stockholm/lib>)
genid genid
; ;
inherit (import <stockholm/lass/2configs/websites/util.nix> {inherit lib pkgs;}) inherit (import <stockholm/lass/2configs/websites/util.nix> {inherit lib pkgs;})