From c1ea92cdfb85bd7b0995b550581d9fd1c3370bf9 Mon Sep 17 00:00:00 2001 From: Weathercold Date: Mon, 17 Feb 2025 06:00:43 -0500 Subject: [PATCH] nh: change flake option type to singleLineStr (#6468) --- modules/programs/nh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/nh.nix b/modules/programs/nh.nix index 23d1d67d..cb3d85e5 100644 --- a/modules/programs/nh.nix +++ b/modules/programs/nh.nix @@ -13,7 +13,7 @@ in { package = lib.mkPackageOption pkgs "nh" { }; flake = lib.mkOption { - type = lib.types.nullOr lib.types.path; + type = lib.types.nullOr lib.types.singleLineStr; default = null; description = '' The path that will be used for the {env}`FLAKE` environment variable.