From 7a7e5383cfea3e02e34993cfc4d144ff23122f79 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 16 Mar 2026 20:19:02 +0100 Subject: [PATCH] remove unneeded nix string escapes --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 465f2123..de412393 100644 --- a/flake.nix +++ b/flake.nix @@ -26,11 +26,11 @@ version = "0.1.0"; src = final.lib.sourceByRegex ./. [ - "Cargo\.lock" - "Cargo\.toml" + "Cargo.lock" + "Cargo.toml" "src" "src/bin" - ".*\.rs$" + ".*.rs$" ]; cargoLock.lockFile = ./Cargo.lock;