2019-05-25 18:53:15 +09:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2021-08-25 09:38:46 -04:00
|
|
|
let
|
|
|
|
inherit (lib) literalExpression types;
|
|
|
|
in
|
|
|
|
{
|
2015-02-16 09:56:08 +00:00
|
|
|
options = {
|
|
|
|
ec2 = {
|
2021-08-25 09:38:46 -04:00
|
|
|
zfs = {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Whether the EC2 instance uses a ZFS root.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
datasets = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Datasets to create under the `tank` and `boot` zpools.
|
|
|
|
|
|
|
|
**NOTE:** This option is used only at image creation time, and
|
|
|
|
does not attempt to declaratively create or manage datasets
|
|
|
|
on an existing system.
|
|
|
|
'';
|
|
|
|
|
|
|
|
default = { };
|
|
|
|
|
|
|
|
type = types.attrsOf (
|
|
|
|
types.submodule {
|
|
|
|
options = {
|
|
|
|
mount = lib.mkOption {
|
|
|
|
description = "Where to mount this dataset.";
|
2023-01-30 16:54:21 +01:00
|
|
|
type = types.nullOr types.str;
|
2021-08-25 09:38:46 -04:00
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
properties = lib.mkOption {
|
|
|
|
description = "Properties to set on this dataset.";
|
2023-01-30 16:54:21 +01:00
|
|
|
type = types.attrsOf types.str;
|
2021-08-25 09:38:46 -04:00
|
|
|
default = { };
|
2024-12-10 20:26:33 +01:00
|
|
|
};
|
2021-08-25 09:38:46 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
2019-05-25 18:53:15 +09:00
|
|
|
efi = lib.mkOption {
|
|
|
|
default = pkgs.stdenv.hostPlatform.isAarch64;
|
|
|
|
defaultText = literalExpression "pkgs.stdenv.hostPlatform.isAarch64";
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Whether the EC2 instance is using EFI.
|
|
|
|
'';
|
|
|
|
};
|
2023-01-05 13:07:12 +01:00
|
|
|
hvm = lib.mkOption {
|
|
|
|
description = "Unused legacy option. While support for non-hvm has been dropped, we keep this option around so that NixOps remains compatible with a somewhat recent `nixpkgs` and machines with an old `stateVersion`.";
|
|
|
|
internal = true;
|
|
|
|
default = true;
|
|
|
|
readOnly = true;
|
|
|
|
};
|
2015-02-16 09:56:08 +00:00
|
|
|
};
|
|
|
|
};
|
2021-08-25 09:38:46 -04:00
|
|
|
|
|
|
|
config = lib.mkIf config.ec2.zfs.enable {
|
|
|
|
networking.hostId = lib.mkDefault "00000000";
|
|
|
|
|
|
|
|
fileSystems =
|
|
|
|
let
|
|
|
|
mountable = lib.filterAttrs (_: value: ((value.mount or null) != null)) config.ec2.zfs.datasets;
|
|
|
|
in
|
|
|
|
lib.mapAttrs' (
|
|
|
|
dataset: opts:
|
|
|
|
lib.nameValuePair opts.mount {
|
|
|
|
device = dataset;
|
|
|
|
fsType = "zfs";
|
|
|
|
}
|
|
|
|
) mountable;
|
|
|
|
};
|
2015-02-16 09:56:08 +00:00
|
|
|
}
|