diff options
| author | Niklas Hambüchen <mail@nh2.me> | 2021-06-27 14:28:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-27 14:28:07 +0200 |
| commit | df8bcca5fb3cdf4119e815e1196cd0a24ea7ea97 (patch) | |
| tree | 3bf89d145b8cf8cc2c835183ee757232ddd455a5 | |
| parent | Merge #127383: firefox*: 89.0 -> 89.0.1 (into release-21.05) (diff) | |
| parent | etcd: fix old aliased package name to make tests pass (diff) | |
| download | nixpkgs-df8bcca5fb3cdf4119e815e1196cd0a24ea7ea97.tar.gz | |
Merge pull request #128161 from NixOS/backport-128150-to-release-21.05
[Backport release-21.05] etcd: refactor the service to add etcd to systemPackages instead of the etcdctl alias
| -rw-r--r-- | nixos/modules/services/misc/etcd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix index 32360d43768a..eb266f043ebc 100644 --- a/nixos/modules/services/misc/etcd.nix +++ b/nixos/modules/services/misc/etcd.nix @@ -184,7 +184,7 @@ in { }; }; - environment.systemPackages = [ pkgs.etcdctl ]; + environment.systemPackages = [ pkgs.etcd ]; users.users.etcd = { uid = config.ids.uids.etcd; |
