default.nix: lib = import 4lib/krebs
This commit is contained in:
parent
5a03593b3a
commit
981664337f
@ -1,8 +1,12 @@
|
|||||||
{ user-name, system-name }:
|
{ user-name, system-name }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
lib = import 4lib/krebs {
|
||||||
|
lib = import <nixpkgs/lib>;
|
||||||
|
};
|
||||||
|
|
||||||
eval = import <nixpkgs/nixos/lib/eval-config.nix> {
|
eval = import <nixpkgs/nixos/lib/eval-config.nix> {
|
||||||
|
inherit lib;
|
||||||
system = builtins.currentSystem;
|
system = builtins.currentSystem;
|
||||||
modules = map (p: ./. + "/${p}") [
|
modules = map (p: ./. + "/${p}") [
|
||||||
"${user-name}/systems/${system-name}.nix"
|
"${user-name}/systems/${system-name}.nix"
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
with lib;
|
||||||
krebs = import ../../4lib/krebs { inherit lib; };
|
|
||||||
in
|
|
||||||
|
|
||||||
with krebs;
|
lib // rec {
|
||||||
|
|
||||||
krebs // rec {
|
|
||||||
|
|
||||||
git = import ./git.nix {
|
git = import ./git.nix {
|
||||||
lib = krebs;
|
inherit lib pkgs;
|
||||||
inherit pkgs;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# "7.4.335" -> "74"
|
# "7.4.335" -> "74"
|
||||||
|
Loading…
Reference in New Issue
Block a user