From 1d154b86bd37a4f7949840baa4eaf14d50c80655 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Tue, 28 Oct 2025 23:22:41 +0800 Subject: [PATCH] feat: Change package sep from `/` to `:` --- flake/perSystem.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake/perSystem.nix b/flake/perSystem.nix index 9d74047..e46b620 100644 --- a/flake/perSystem.nix +++ b/flake/perSystem.nix @@ -61,7 +61,7 @@ path: value: if lib.isDerivation value then { - ${lib.concatStringsSep "/" path} = value; + ${lib.concatStringsSep ":" path} = value; } else if lib.isAttrs value then lib.concatMapAttrs (name: flattenPkgs (path ++ [ name ])) value