iac/services/etcd.nix
2026-02-21 12:21:11 +01:00

8 lines
93 B
Nix

{ pkgs, ... }:
{
services.etcd = {
enable = true;
package = pkgs.etcd_3_6;
};
}