dotfiles/nix/lib/default.nix
isabel 62fe63eea2
refactor: nix
mostly small changes to move to a module based strucutre such that you
can add more hosts at a later date
2025-01-17 13:34:38 +00:00

17 lines
257 B
Nix

{ inputs }:
let
lib0 = inputs.nixpkgs.lib;
myLib = lib0.makeExtensible (
self:
let
callLib = file: import file { lib = self; };
in
{
importAll = callLib ./importAll.nix;
}
);
lib = myLib.extend (_: _: lib0);
in
lib