summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/iso-image.nix
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2023-03-19 21:44:31 +0100
committerFelix Buehler <account@buehler.rocks>2023-04-07 13:38:33 +0200
commit327b0cff7aedc20a148d245b1182f43800acc1f5 (patch)
treea498ae1b2dd2289310483d81345903d7e9123cb7 /nixos/modules/installer/cd-dvd/iso-image.nix
parentb392d9b827cf4bb52141ab86e4202ec340f0b181 (diff)
downloadnixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar.gz
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar.bz2
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar.lz
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar.xz
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.tar.zst
nixpkgs-327b0cff7aedc20a148d245b1182f43800acc1f5.zip
treewide: use more lib.optionalString
Diffstat (limited to 'nixos/modules/installer/cd-dvd/iso-image.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index 8fa070b03db..ea17e2a705e 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -22,8 +22,8 @@ let
       (option: ''
         menuentry '${defaults.name} ${
         # Name appended to menuentry defaults to params if no specific name given.
-        option.name or (if option ? params then "(${option.params})" else "")
-        }' ${if option ? class then " --class ${option.class}" else ""} {
+        option.name or (optionalString (option ? params) "(${option.params})")
+        }' ${optionalString (option ? class) " --class ${option.class}"} {
           linux ${defaults.image} \''${isoboot} ${defaults.params} ${
             option.params or ""
           }