disko/module.nix

58 lines
2.1 KiB
Nix
Raw Normal View History

2022-10-23 13:29:30 +03:00
{ config, lib, pkgs, ... }:
let
2023-01-28 18:19:13 +03:00
types = import ./types {
inherit lib;
rootMountPoint = config.disko.rootMountPoint;
};
2022-10-23 13:29:30 +03:00
cfg = config.disko;
in {
options.disko = {
devices = lib.mkOption {
type = types.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;
};
};
config = lib.mkIf (cfg.devices.disk != {}) {
2023-01-15 19:28:23 +03:00
system.build.formatScript = pkgs.writers.writeBash "disko-create" ''
export PATH=${lib.makeBinPath (types.diskoLib.packages cfg.devices pkgs)}:$PATH
${types.diskoLib.create cfg.devices}
'';
2023-01-15 19:28:23 +03:00
system.build.mountScript = pkgs.writers.writeBash "disko-mount" ''
export PATH=${lib.makeBinPath (types.diskoLib.packages cfg.devices pkgs)}:$PATH
${types.diskoLib.mount cfg.devices}
'';
2022-11-25 14:52:40 +03:00
system.build.disko = pkgs.writers.writeBash "disko" ''
export PATH=${lib.makeBinPath (types.diskoLib.packages cfg.devices pkgs)}:$PATH
${types.diskoLib.zapCreateMount cfg.devices}
'';
# This is useful to skip copying executables uploading a script to an in-memory installer
2022-11-29 12:53:56 +03:00
system.build.diskoNoDeps = pkgs.writeScript "disko" ''
#!/usr/bin/env bash
${types.diskoLib.zapCreateMount cfg.devices}
'';
2022-10-23 13:29:30 +03:00
# Remember to add config keys here if they are added to types
fileSystems = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "fileSystems" (types.diskoLib.config cfg.devices)));
boot = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "boot" (types.diskoLib.config cfg.devices)));
2022-11-05 23:17:35 +03:00
swapDevices = lib.mkIf cfg.enableConfig (lib.mkMerge (lib.catAttrs "swapDevices" (types.diskoLib.config cfg.devices)));
2022-10-23 13:29:30 +03:00
};
}