Skip to content

Commit

Permalink
build: use str instead of string
Browse files Browse the repository at this point in the history
string was deprecated in nixpkgs
  • Loading branch information
kurnevsky committed Aug 12, 2023
1 parent b324ef2 commit c184b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/build/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ with lib;
};

extraProotOptions = mkOption {
type = types.listOf types.string;
type = types.listOf types.str;
default = [ ];
description = "Extra options passed to proot, e.g., extra bind mounts.";
};
Expand Down

0 comments on commit c184b03

Please sign in to comment.