Commit ce3915d3bd67

Vincent Demeester <vincent@sbr.pm>
2021-03-29 16:03:06
systems/users: use tektoncd-cli instead of tkn ๐Ÿ 
`tkn` is now packaged upstream, just use that. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0d2dcf8
Changed files (2)
systems
users
vincent
containers
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;
users/vincent/containers/tekton.nix
@@ -2,7 +2,7 @@
 
 {
   home.packages = with pkgs; [
-    my.tkn
+    tektoncd-cli
     my.tkn_oci
   ];
 }