mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
6e46ea3930
It changed and also not worth it to recreate it manually so we'll leave it as a raw type.
19 lines
545 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|