diff options
author | 2025-09-06 14:02:31 +0200 | |
---|---|---|
committer | 2025-09-06 14:03:05 +0200 | |
commit | eba6e440861a9f94f6837bb6b37fd2ef7e4e0446 (patch) | |
tree | 556062943c2f794edeeb9920e52491bf67a539d7 /default.nix | |
parent | 7132c52c038de995eb291070a4cda3eaf975635b (diff) |
refactor lib/{machines,nixosModules}.nix
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 03a67f4..5841e24 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,7 @@ { sources ? import ./npins , pkgs ? import sources.nixpkgs {} }: -with (import ./lib {}); +with (import ./lib { inherit sources pkgs; }); eval { machines.bob.imports = [ ({ self, config, ... }: { |