From e3fe0e59d1ca50d32ea5f4f036b6261ac6b480fb Mon Sep 17 00:00:00 2001 From: dish Date: Mon, 16 Mar 2026 16:13:46 -0400 Subject: [PATCH] [defaultConfig] fix nix config --- nixosModules/default-config/nixConfig.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixosModules/default-config/nixConfig.nix b/nixosModules/default-config/nixConfig.nix index e8b2f59a..b6728bfd 100644 --- a/nixosModules/default-config/nixConfig.nix +++ b/nixosModules/default-config/nixConfig.nix @@ -42,8 +42,6 @@ in "flakes" # Nix3 CLI "nix-command" - # Disallow URL Literals as they are deprecated - "no-url-literals" ]; # Build from source if substitution fails fallback = true; @@ -58,6 +56,8 @@ in keep-going = true; # More direnv gc root stuff keep-outputs = true; + # Deprecate URL Literals + lint-url-literals = "fatal"; log-lines = 20; # Limit the max amount of builds max-jobs = lib.mkDefault 4; -- 2.51.2