mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
Merge pull request #92 from nix-community/module-config
module: define only if devices are given
This commit is contained in:
commit
f665b6b34d
@ -5,7 +5,8 @@ let
|
||||
in {
|
||||
options.disko = {
|
||||
devices = lib.mkOption {
|
||||
type = types.devices;
|
||||
type = lib.types.nullOr types.devices;
|
||||
default = null;
|
||||
};
|
||||
enableConfig = lib.mkOption {
|
||||
description = ''
|
||||
@ -17,7 +18,7 @@ in {
|
||||
default = true;
|
||||
};
|
||||
};
|
||||
config = {
|
||||
config = lib.mkIf (cfg.devices != null) {
|
||||
system.build.formatScript = pkgs.writers.writeDash "disko-create" ''
|
||||
export PATH=${lib.makeBinPath (types.diskoLib.packages cfg.devices pkgs)}:$PATH
|
||||
${types.diskoLib.create cfg.devices}
|
||||
|
Loading…
Reference in New Issue
Block a user