From 5414f4a16d89a01a6e6408768f676d7e502e4642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Lafuente?= Date: Sun, 8 Sep 2024 21:53:23 +0200 Subject: [PATCH] fix: lockfile is a path, not a string --- modules/top-level.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/top-level.nix b/modules/top-level.nix index 9ddc715..c140e94 100644 --- a/modules/top-level.nix +++ b/modules/top-level.nix @@ -75,7 +75,7 @@ let types = lib.types; in lockfile = lib.mkOption { default = null; - type = types.nullOr types.str; + type = types.nullOr types.path; description = lib.mdDoc "The lock file"; };