grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / security / hologram-agent.nix
bloba2cf9611d677bc77adcea6a03cef5bd0615f6a3b
1 {pkgs, config, lib, ...}:
3 with lib;
5 let
6   cfg = config.services.hologram-agent;
8   cfgFile = pkgs.writeText "hologram-agent.json" (builtins.toJSON {
9     host = cfg.dialAddress;
10   });
11 in {
12   options = {
13     services.hologram-agent = {
14       enable = mkOption {
15         type = types.bool;
16         default = false;
17         description = "Whether to enable the Hologram agent for AWS instance credentials";
18       };
20       dialAddress = mkOption {
21         type        = types.str;
22         default     = "localhost:3100";
23         description = "Hologram server and port.";
24       };
26       httpPort = mkOption {
27         type        = types.str;
28         default     = "80";
29         description = "Port for metadata service to listen on.";
30       };
32     };
33   };
35   config = mkIf cfg.enable {
36     boot.kernelModules = [ "dummy" ];
38     networking.interfaces.dummy0.ipv4.addresses = [
39       { address = "169.254.169.254"; prefixLength = 32; }
40     ];
42     systemd.services.hologram-agent = {
43       description = "Provide EC2 instance credentials to machines outside of EC2";
44       after       = [ "network.target" ];
45       wantedBy    = [ "multi-user.target" ];
46       requires    = [ "network-link-dummy0.service" "network-addresses-dummy0.service" ];
47       preStart = ''
48         /run/current-system/sw/bin/rm -fv /run/hologram.sock
49       '';
50       serviceConfig = {
51         ExecStart = "${pkgs.hologram}/bin/hologram-agent -debug -conf ${cfgFile} -port ${cfg.httpPort}";
52       };
53     };
55   };
57   meta.maintainers = [ ];