2020-04-24 23:36:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2021-08-27 14:25:00 +00:00
|
|
|
let
|
2021-12-06 16:07:01 +00:00
|
|
|
inherit (lib) literalExpression types;
|
2021-08-27 14:25:00 +00:00
|
|
|
in {
|
2020-04-24 23:36:52 +00:00
|
|
|
options = {
|
|
|
|
ec2 = {
|
2021-08-27 14:25:00 +00:00
|
|
|
zfs = {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
internal = true;
|
2022-09-09 14:08:57 +00:00
|
|
|
description = lib.mdDoc ''
|
2021-08-27 14:25:00 +00:00
|
|
|
Whether the EC2 instance uses a ZFS root.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
datasets = lib.mkOption {
|
2022-08-21 13:32:41 +00:00
|
|
|
description = lib.mdDoc ''
|
2021-08-27 14:25:00 +00:00
|
|
|
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 {
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "Where to mount this dataset.";
|
2023-02-02 18:25:31 +00:00
|
|
|
type = types.nullOr types.str;
|
2021-08-27 14:25:00 +00:00
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
properties = lib.mkOption {
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "Properties to set on this dataset.";
|
2023-02-02 18:25:31 +00:00
|
|
|
type = types.attrsOf types.str;
|
2021-08-27 14:25:00 +00:00
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
efi = lib.mkOption {
|
|
|
|
default = pkgs.stdenv.hostPlatform.isAarch64;
|
2021-12-06 16:07:01 +00:00
|
|
|
defaultText = literalExpression "pkgs.stdenv.hostPlatform.isAarch64";
|
2020-04-24 23:36:52 +00:00
|
|
|
internal = true;
|
2022-09-09 14:08:57 +00:00
|
|
|
description = lib.mdDoc ''
|
2020-04-24 23:36:52 +00:00
|
|
|
Whether the EC2 instance is using EFI.
|
|
|
|
'';
|
|
|
|
};
|
2023-01-11 07:51:40 +00: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;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
};
|
2021-08-27 14:25:00 +00: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;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|