1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-06 16:57:03 +00:00

nh: change flake option type to singleLineStr (#6468)

This commit is contained in:
Weathercold 2025-02-17 06:00:43 -05:00 committed by GitHub
parent 5c5697b82a
commit c1ea92cdfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.