mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2026-06-15 00:25:39 +00:00
mostly small changes to move to a module based strucutre such that you can add more hosts at a later date
17 lines
257 B
Nix
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
|