nixos/rngd: use new name pkgs.rng-tools

Instead of pkgs.rng_tools which is now an alias
This commit is contained in:
Renaud 2018-10-24 13:46:08 +02:00 committed by GitHub
parent 6ffdf5a39f
commit b2f6aa0069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ with lib;
description = "Hardware RNG Entropy Gatherer Daemon"; description = "Hardware RNG Entropy Gatherer Daemon";
serviceConfig.ExecStart = "${pkgs.rng_tools}/sbin/rngd -f -v" + serviceConfig.ExecStart = "${pkgs.rng-tools}/sbin/rngd -f -v" +
(if config.services.tcsd.enable then " --no-tpm=1" else ""); (if config.services.tcsd.enable then " --no-tpm=1" else "");
}; };
}; };