disko/module.nix

80 lines
3.1 KiB
Nix
Raw Normal View History

2022-10-23 13:29:30 +03:00
{ config, lib, pkgs, ... }:
let
2023-05-16 14:40:03 +03:00
diskoLib = import ./lib {
inherit lib;
rootMountPoint = config.disko.rootMountPoint;
};
2022-10-23 13:29:30 +03:00
cfg = config.disko;
checked = cfg.checkScripts;
in
{
2022-10-23 13:29:30 +03:00
options.disko = {
devices = lib.mkOption {
2023-05-16 14:40:03 +03:00
type = diskoLib.devices;
default = { };
description = "The devices to set up";
2022-10-23 13:29:30 +03:00
};
rootMountPoint = lib.mkOption {
type = lib.types.str;
default = "/mnt";
description = "Where the device tree should be mounted by the mountScript";
};
2022-10-23 13:29:30 +03:00
enableConfig = lib.mkOption {
description = ''
configure nixos with the specified devices
should be true if the system is booted with those devices
should be false on an installer image etc.
'';
type = lib.types.bool;
default = true;
};
checkScripts = lib.mkOption {
description = ''
Whether to run shellcheck on script outputs
'';
type = lib.types.bool;
default = false;
};
2022-10-23 13:29:30 +03:00
};
config = lib.mkIf (cfg.devices.disk != { }) {
2023-05-16 14:40:03 +03:00
system.build.formatScript = (diskoLib.writeCheckedBash { inherit pkgs checked; }) "disko-create" ''
export PATH=${lib.makeBinPath (diskoLib.packages cfg.devices pkgs)}:$PATH
${diskoLib.create cfg.devices}
'';
2023-05-16 14:40:03 +03:00
system.build.mountScript = (diskoLib.writeCheckedBash { inherit pkgs checked; }) "disko-mount" ''
export PATH=${lib.makeBinPath (diskoLib.packages cfg.devices pkgs)}:$PATH
${diskoLib.mount cfg.devices}
'';
# we keep this old output for compatibility
2023-06-23 05:57:57 +03:00
system.build.disko = builtins.trace "the .disko output is deprecated, plase use .diskoScript instead" config.system.build.diskoScript;
system.build.diskoScript = (diskoLib.writeCheckedBash { inherit pkgs checked; }) "disko" ''
2023-06-23 05:58:08 +03:00
export PATH=${lib.makeBinPath ((diskoLib.packages cfg.devices pkgs) ++ [ pkgs.bash ])}:$PATH
2023-05-16 14:40:03 +03:00
${diskoLib.zapCreateMount cfg.devices}
'';
# These are useful to skip copying executables uploading a script to an in-memory installer
system.build.formatScriptNoDeps = (diskoLib.writeCheckedBash { inherit pkgs checked; noDeps = true; }) "disko-create" ''
${diskoLib.create cfg.devices}
'';
system.build.mountScriptNoDeps = (diskoLib.writeCheckedBash { inherit pkgs checked; noDeps = true; }) "disko-mount" ''
${diskoLib.mount cfg.devices}
'';
2023-06-23 05:57:57 +03:00
# we keep this old output for compatibility
system.build.diskoNoDeps = builtins.trace "the .diskoNoDeps output is deprecated, plase use .diskoScriptNoDeps instead" config.system.build.diskoScriptNoDeps;
system.build.diskoScriptNoDeps = (diskoLib.writeCheckedBash { inherit pkgs checked; noDeps = true; }) "disko" ''
2023-05-16 14:40:03 +03:00
${diskoLib.zapCreateMount cfg.devices}
'';
2022-10-23 13:29:30 +03:00
# Remember to add config keys here if they are added to types
2023-05-16 14:40:03 +03:00
fileSystems = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "fileSystems" (diskoLib.config cfg.devices)));
boot = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "boot" (diskoLib.config cfg.devices)));
swapDevices = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "swapDevices" (diskoLib.config cfg.devices)));
2022-10-23 13:29:30 +03:00
};
}