Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
Showing only changes of commit c1c06ab01c - Show all commits

View file

@ -4,7 +4,7 @@ let
importOverlays = builtins.map importOverlays = builtins.map
(overlay: overlay { inherit lib inputs; }) (overlay: overlay { inherit lib inputs; })
(builtins.filter (builtins.filter
(file: builtins.match file "*.nix") (file: builtins.match "(.*.nix)" (builtins.toString file) != [])
(lib.filesystem.listFilesRecursive ../../../overlays)); (lib.filesystem.listFilesRecursive ../../../overlays));
in { in {
nix = { nix = {
@ -24,6 +24,6 @@ in {
allowUnfree = true; allowUnfree = true;
}; };
hostPlatform = lib.mkDefault "x86_64-linux"; hostPlatform = lib.mkDefault "x86_64-linux";
overlays = importOverlays; overlays = builtins.trace importOverlays;
}; };
} }