Skip to content

Commit 4f9e989

Browse files
committed
nixos/auditd: fix typo
Would otherwise fail with ``` error: A definition for option `systemd.services.auditd.conflicts."[definition 1-entry 1]"' is not of type `string matching the pattern [a-zA-Z0-9@%:_.\-]+[.](service|socket|device|mount|automount|swap|target|path|timer|scope|slice)'. Definition values: - In `/nix/store/x2khl2yx0vz2i357x7mz5xm1kagql8ag-source/nixos/modules/security/auditd.nix': "shutdown.target " ```
1 parent d705c53 commit 4f9e989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/security/auditd.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ with lib;
1414
description = "Linux Audit daemon";
1515
wantedBy = [ "basic.target" ];
1616
before = [ "shutdown.target" ];
17-
conflicts = [ "shutdown.target "];
17+
conflicts = [ "shutdown.target" ];
1818

1919
unitConfig = {
2020
ConditionVirtualization = "!container";

0 commit comments

Comments
 (0)