wrapped homeDirectory default definition in quotes

This commit is contained in:
Devyn Freet
2026-07-10 23:30:15 -04:00
parent 2dcff861fe
commit 790b66c86b
+1 -1
View File
@@ -7,7 +7,7 @@
}; };
homeDirectory = lib.mkOption { homeDirectory = lib.mkOption {
type = lib.types.path; type = lib.types.path;
default = /home/${config.name}; default = "/home/${config.name}";
}; };
}; };
} }