1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Fix: Fix flake.nix undefined variable

This commit is contained in:
RGBCube 2023-05-03 13:39:54 +03:00
parent 0af238c15b
commit 2b3c0be4fd

View file

@ -67,7 +67,7 @@
}; };
in in
# Basically imports all machines in ./machines/. # Basically imports all machines in ./machines/.
builtins.foldl' lib.recursiveUpdate {} (builtins.map importConfiguration [ builtins.foldl' nixpkgs.lib.recursiveUpdate {} (builtins.map importConfiguration [
./machines/asus # HACK: Use a function to list the directory. ./machines/asus # HACK: Use a function to list the directory.
]); ]);
} }