···567568- `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
56900570- 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.
571572- 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).
···567568- `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
569570+- 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.
571+572- 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.
573574- 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).
···36 description = lib.mdDoc "Location of the mounted file system.";
37 };
3800000000039 device = mkOption {
40 default = null;
41 example = "/dev/sda";
···36 description = lib.mdDoc "Location of the mounted file system.";
37 };
3839+ stratis.poolUuid = lib.mkOption {
40+ type = types.uniq (types.nullOr types.str);
41+ description = lib.mdDoc ''
42+ UUID of the stratis pool that the fs is located in
43+ '';
44+ example = "04c68063-90a5-4235-b9dd-6180098a20d9";
45+ default = null;
46+ };
47+48 device = mkOption {
49 default = null;
50 example = "/dev/sda";