···567567568568- `boot.initrd.luks.device.<name>` has a new `tryEmptyPassphrase` option, this is useful for OEM's who need to install an encrypted disk with a future settable passphrase
569569570570+- there is a new `boot/stratisroot.nix` module that enables booting from a volume managed by the Stratis storage management daemon. Use `fileSystems.<name>.stratis.poolUuid` to configure the pool containing the fs.
571571+570572- Lisp gained a [manual section](https://nixos.org/manual/nixpkgs/stable/#lisp), documenting a new and backwards incompatible interface. The previous interface will be removed in a future release.
571573572574- The `bind` module now allows the per-zone `allow-query` setting to be configured (previously it was hard-coded to `any`; it still defaults to `any` to retain compatibility).
···3636 description = lib.mdDoc "Location of the mounted file system.";
3737 };
38383939+ stratis.poolUuid = lib.mkOption {
4040+ type = types.uniq (types.nullOr types.str);
4141+ description = lib.mdDoc ''
4242+ UUID of the stratis pool that the fs is located in
4343+ '';
4444+ example = "04c68063-90a5-4235-b9dd-6180098a20d9";
4545+ default = null;
4646+ };
4747+3948 device = mkOption {
4049 default = null;
4150 example = "/dev/sda";