nixos-config/modules/flake-parts/disko-configurations.nix
Gabriel Arazas 6e46ea3930
flake-parts/disko-configurations: update type
It changed and also not worth it to recreate it manually so we'll leave
it as a raw type.
2024-11-19 20:27:46 +08:00

19 lines
545 B
Nix

{ lib, flake-parts-lib, inputs, ... }:
{
options = {
flake = flake-parts-lib.mkSubmoduleOptions {
diskoConfigurations = lib.mkOption {
type = with lib.types; attrsOf raw;
default = { };
description = ''
A set of [disko](https://github.com/nix-community/disko)
configurations readily available as part of the flake output to be
used by {command}`disko`. Could be useful as backup initialization
scripts for individual storage drives.
'';
};
};
};
}