mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 06:24:35 +00:00
Add assertion to prevent enabling autoWipBtrfs without impermanence
This commit is contained in:
parent
15947ba93a
commit
edade19d64
|
@ -85,4 +85,13 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.autoWipeBtrfs.enable -> cfg.root.enable;
|
||||
message = "myOptions.system.impermanence.autoWipeBtrfs requires myOptions.system.impermanence.root to be enabled.";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue