2022-09-28 23:25:03 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.virtualisation.linodeImage;
|
|
|
|
defaultConfigFile = pkgs.writeText "configuration.nix" ''
|
|
|
|
_: {
|
|
|
|
imports = [
|
|
|
|
<nixpkgs/nixos/modules/virtualisation/linode-image.nix>
|
|
|
|
];
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
2024-09-10 18:14:43 +01:00
|
|
|
imports = [
|
|
|
|
./linode-config.nix
|
|
|
|
./disk-size-option.nix
|
|
|
|
(lib.mkRenamedOptionModuleWith {
|
|
|
|
sinceRelease = 2411;
|
|
|
|
from = [
|
|
|
|
"virtualisation"
|
|
|
|
"linodeImage"
|
|
|
|
"diskSize"
|
|
|
|
];
|
|
|
|
to = [
|
|
|
|
"virtualisation"
|
|
|
|
"diskSize"
|
|
|
|
];
|
|
|
|
})
|
|
|
|
];
|
2022-09-28 23:25:03 +01:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
virtualisation.linodeImage.configFile = mkOption {
|
|
|
|
type = with types; nullOr str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
A path to a configuration file which will be placed at `/etc/nixos/configuration.nix`
|
|
|
|
and be used when switching to a new configuration.
|
|
|
|
If set to `null`, a default configuration is used, where the only import is
|
|
|
|
`<nixpkgs/nixos/modules/virtualisation/linode-image.nix>`
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
virtualisation.linodeImage.compressionLevel = mkOption {
|
|
|
|
type = types.ints.between 1 9;
|
|
|
|
default = 6;
|
|
|
|
description = ''
|
|
|
|
GZIP compression level of the resulting disk image (1-9).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
system.build.linodeImage = import ../../lib/make-disk-image.nix {
|
|
|
|
name = "linode-image";
|
|
|
|
# NOTE: Linode specifically requires images to be `gzip`-ed prior to upload
|
|
|
|
# See: https://www.linode.com/docs/products/tools/images/guides/upload-an-image/#requirements-and-considerations
|
|
|
|
postVM = ''
|
|
|
|
${pkgs.gzip}/bin/gzip -${toString cfg.compressionLevel} -c -- $diskImage > \
|
|
|
|
$out/nixos-image-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.img.gz
|
|
|
|
rm $diskImage
|
|
|
|
'';
|
|
|
|
format = "raw";
|
|
|
|
partitionTableType = "none";
|
|
|
|
configFile = if cfg.configFile == null then defaultConfigFile else cfg.configFile;
|
2024-09-10 18:14:43 +01:00
|
|
|
inherit (config.virtualisation) diskSize;
|
2022-09-28 23:25:03 +01:00
|
|
|
inherit config lib pkgs;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-03-30 23:35:50 +01:00
|
|
|
meta.maintainers = with maintainers; [ cyntheticfox ];
|
2022-09-28 23:25:03 +01:00
|
|
|
}
|