[NixOS] Properly set type of dotfiles-directory

This commit is contained in:
Ivan Malison 2023-06-29 04:46:04 +00:00
parent 81b13ebac7
commit 9d1f039387

View File

@ -3,7 +3,7 @@ with lib;
{
options = {
dotfiles-directory = mkOption {
type = types.str;
type = types.path;
default = ../.;
};
};