grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / security / jitterentropy-rngd.nix
blob104aeccebc9ccce2d898637f9b5698e4168ade43
1 { lib, config, pkgs, ... }:
2 let
3   cfg = config.services.jitterentropy-rngd;
4 in
6   options.services.jitterentropy-rngd = {
7     enable =
8       lib.mkEnableOption "jitterentropy-rngd service configuration";
9     package = lib.mkPackageOption pkgs "jitterentropy-rngd" { };
10   };
12   config = lib.mkIf cfg.enable {
13     systemd.packages = [ cfg.package ];
14     systemd.services."jitterentropy".wantedBy = [ "basic.target" ];
15   };
17   meta.maintainers = with lib.maintainers; [ thillux ];