Browse Source

Fix missing work packages

Thomas Dy 4 years ago
parent
commit
a9aa769d4a
2 changed files with 10 additions and 1 deletions
  1. 9 1
      includes/cli/default.nix
  2. 1 0
      includes/kubernetes/default.nix

+ 9 - 1
includes/cli/default.nix

@@ -1,5 +1,11 @@
 { config, pkgs, ... }:
 
+let
+  cssh = pkgs.linkFarm "cssh" [{
+    name = "bin/cssh";
+    path = "${pkgs.tmux-cssh}/bin/tmux-cssh";
+  }];
+in
 {
   programs.zsh.enable = true;
   programs.mtr.enable = true;
@@ -34,12 +40,14 @@
     shellcheck
     any-nix-shell
     tmux-cssh
-    
+    cssh
+
     # work
     awscli
     docker
     docker_compose
     amazon-ecr-credential-helper
     python37Packages.cfn-lint
+    _1password
   ];
 }

+ 1 - 0
includes/kubernetes/default.nix

@@ -59,5 +59,6 @@ in {
     helm
     eksctl
     k9s
+    aws-iam-authenticator
   ];
 }