Make hostStoreAsReadOnly true by default.
Co-Authored-By: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
parent
c5fb4177b8
commit
662042a2bf
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ in
|
||||||
};
|
};
|
||||||
service.hostStoreAsReadOnly = mkOption {
|
service.hostStoreAsReadOnly = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = true;
|
||||||
description = "Adds a ':ro' (read-only) access mode to the host nix store bind mount.";
|
description = "Adds a ':ro' (read-only) access mode to the host nix store bind mount.";
|
||||||
};
|
};
|
||||||
service.useHostNixDaemon = mkOption {
|
service.useHostNixDaemon = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue