mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
60 lines
1.9 KiB
Nix
60 lines
1.9 KiB
Nix
{ config, options, lib, diskoLib, ... }:
|
|
{
|
|
options = {
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = lib.replaceStrings [ "/" ] [ "_" ] config._module.args.name;
|
|
description = "Device name";
|
|
};
|
|
type = lib.mkOption {
|
|
type = lib.types.enum [ "disk" ];
|
|
default = "disk";
|
|
internal = true;
|
|
description = "Type";
|
|
};
|
|
device = lib.mkOption {
|
|
type = diskoLib.optionTypes.absolute-pathname; # TODO check if subpath of /dev ? - No! eg: /.swapfile
|
|
description = "Device path";
|
|
};
|
|
imageSize = lib.mkOption {
|
|
type = lib.types.strMatching "[0-9]+[KMGTP]?";
|
|
description = ''
|
|
size of the image if the makeDiskImages function from diksoLib is used.
|
|
is used as an argument to truncate -s
|
|
'';
|
|
default = "2G";
|
|
};
|
|
content = diskoLib.deviceType { parent = config; device = config.device; };
|
|
_meta = lib.mkOption {
|
|
internal = true;
|
|
readOnly = true;
|
|
type = diskoLib.jsonType;
|
|
default =
|
|
lib.optionalAttrs (config.content != null) (config.content._meta [ "disk" config.device ]);
|
|
description = "Metadata";
|
|
};
|
|
_create = diskoLib.mkCreateOption {
|
|
inherit config options;
|
|
default = config.content._create;
|
|
};
|
|
_mount = diskoLib.mkMountOption {
|
|
inherit config options;
|
|
default = lib.optionalAttrs (config.content != null) config.content._mount;
|
|
};
|
|
_config = lib.mkOption {
|
|
internal = true;
|
|
readOnly = true;
|
|
default =
|
|
lib.optional (config.content != null) config.content._config;
|
|
description = "NixOS configuration";
|
|
};
|
|
_pkgs = lib.mkOption {
|
|
internal = true;
|
|
readOnly = true;
|
|
type = lib.types.functionTo (lib.types.listOf lib.types.package);
|
|
default = pkgs: [ pkgs.jq ] ++ lib.optionals (config.content != null) (config.content._pkgs pkgs);
|
|
description = "Packages";
|
|
};
|
|
};
|
|
}
|