home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit ce3915d3bd67df428c8249b85ed48100c33a34c0
parent 0d2dcf8a79289a566b299a65f4aefcdbdbee0939
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 29 Mar 2021 16:03:06 +0200

systems/users: use tektoncd-cli instead of tkn 🍠

`tkn` is now packaged upstream, just use that.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/hosts/foo.flake.nix | 2+-
Musers/vincent/containers/tekton.nix | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/systems/hosts/foo.flake.nix b/systems/hosts/foo.flake.nix @@ -43,7 +43,7 @@ in laptop.enable = true; }; - environment.systemPackages = with pkgs; [ tkn nyxt ]; + environment.systemPackages = with pkgs; [ tektoncd-cli nyxt ]; /* profiles = { desktop.i3.enable = true; diff --git a/users/vincent/containers/tekton.nix b/users/vincent/containers/tekton.nix @@ -2,7 +2,7 @@ { home.packages = with pkgs; [ - my.tkn + tektoncd-cli my.tkn_oci ]; }