aboutsummaryrefslogblamecommitdiff
path: root/nix/profiles/home-manager/work.nix
blob: d7fdb43ec076064e5263158dffd8cbd4ebd22bcb (plain) (tree)
1
2
3
4
5
6
7
                


                              
                          
 
                                                     
















                                                             



                                                        



                              
 
{ pkgs, ... }: {

  home.stateVersion = "23.05";

  imports = [ ./mac.nix ];

  programs.git = { userEmail = "fcuny@roblox.com"; };

  home.packages = with pkgs; [
    gh # github cli tool
    kind # k8s in docker
    kubebuilder # generate controller
    kubectl
    kubernetes-helm # deploy applications
    kubie # kubeconfig browser https://github.com/sbstp/kubie

    boundary
    nomad-pack
  ];

  home.file.kubie = {
    target = ".kube/kubie.yaml";
    text = ''
      shell: fish
      configs:
        include:
          - ~/.kube/cellconfig  # configuration for edge
          - ~/.kube/rksconfig   # configuration for core
      prompt:
        fish_use_rprompt: true
    '';
  };
}