20% chance of working
This commit is contained in:
parent
f86f926ec4
commit
c1c06ab01c
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ let
|
|||
importOverlays = builtins.map
|
||||
(overlay: overlay { inherit lib inputs; })
|
||||
(builtins.filter
|
||||
(file: builtins.match file "*.nix")
|
||||
(file: builtins.match "(.*.nix)" (builtins.toString file) != [])
|
||||
(lib.filesystem.listFilesRecursive ../../../overlays));
|
||||
in {
|
||||
nix = {
|
||||
|
@ -24,6 +24,6 @@ in {
|
|||
allowUnfree = true;
|
||||
};
|
||||
hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
overlays = importOverlays;
|
||||
overlays = builtins.trace importOverlays;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue