bruhhhhhhhhhhh why does this work
This commit is contained in:
parent
34a1a77098
commit
c86b4efb89
1 changed files with 1 additions and 7 deletions
|
@ -6,12 +6,6 @@ let
|
||||||
(builtins.filter
|
(builtins.filter
|
||||||
(file: builtins.match ".*\.nix" (builtins.toString file) != null)
|
(file: builtins.match ".*\.nix" (builtins.toString file) != null)
|
||||||
(lib.filesystem.listFilesRecursive "${cfgPath}/overlays"));
|
(lib.filesystem.listFilesRecursive "${cfgPath}/overlays"));
|
||||||
/*
|
|
||||||
importOverlays =
|
|
||||||
(builtins.filter
|
|
||||||
(file: builtins.match ".*\.nix" (builtins.toString file) != null)
|
|
||||||
(lib.filesystem.listFilesRecursive ../../../overlays));
|
|
||||||
*/
|
|
||||||
in {
|
in {
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -29,6 +23,6 @@ in {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
hostPlatform = lib.mkDefault "x86_64-linux";
|
hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
overlays = builtins.trace importOverlays importOverlays;
|
overlays = importOverlays;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue