1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-28 09:17:28 +02:00

lib: make dag.nix take lib as argument

This commit is contained in:
Robert Helgesson 2017-09-21 13:19:29 +02:00
parent 61042c7606
commit 742d1889c5
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
6 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
with import ./lib/dag.nix; with import ./lib/dag.nix { inherit lib; };
let let

View file

@ -7,9 +7,9 @@
# - the addition of the function `dagEntryBefore` indicating a # - the addition of the function `dagEntryBefore` indicating a
# "wanted by" relationship. # "wanted by" relationship.
with import <nixpkgs/lib/strings.nix>; { lib }:
with import <nixpkgs/lib/attrsets.nix>;
with import <nixpkgs/lib/lists.nix>; with lib;
rec { rec {

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
with import ../lib/dag.nix; with import ../lib/dag.nix { inherit lib; };
let let

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
with import ../lib/dag.nix; with import ../lib/dag.nix { inherit lib; };
let let

View file

@ -21,7 +21,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
with import ../lib/dag.nix; with import ../lib/dag.nix { inherit lib; };
let let
cfg = config.programs.info; cfg = config.programs.info;

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
with import ./lib/dag.nix; with import ./lib/dag.nix { inherit lib; };
let let