diff options
| author | Sandro <sandro.jaeckel@gmail.com> | 2024-10-14 13:17:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-14 13:17:29 +0200 |
| commit | eafd968bfd2b25a5d38076c39ee5f267ce2a03a1 (patch) | |
| tree | 702637ca0b9c803c519dc4d826f5515573ab2efa | |
| parent | zarf: 0.40.1 -> 0.41.0 (#346834) (diff) | |
| download | nixpkgs-eafd968bfd2b25a5d38076c39ee5f267ce2a03a1.tar.gz | |
nixos/systemd: fix enableStrictShellChecks descriptionorigin/enableStrictShellChecks-description
| -rw-r--r-- | nixos/modules/system/boot/systemd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 6c70f50a6073..2c7b3a319ecd 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -197,7 +197,7 @@ in package = mkPackageOption pkgs "systemd" {}; - enableStrictShellChecks = mkEnableOption "running shellcheck on the generated scripts for systemd units."; + enableStrictShellChecks = mkEnableOption "" // { description = "Whether to run shellcheck on the generated scripts for systemd units."; }; units = mkOption { description = "Definition of systemd units; see {manpage}`systemd.unit(5)`."; |
