remove default for clan.core.settings.machine.name and make readOnly

There is not reason that there needs to be a default. Machines are usually defined as an attrset, so there is no reason to have a default.
Also make this readOnly as we never want to override it.
This commit is contained in:
DavHau
2025-04-02 18:21:05 +07:00
parent db2bd58d8f
commit e540b82dc6
4 changed files with 40 additions and 27 deletions

View File

@@ -117,7 +117,7 @@ in
options = {
name = mkOption {
type = types.str;
default = "nixos";
readOnly = true;
description = ''
the name of the machine
'';