about summary refs log tree commit diff
path: root/nix/profiles/home-manager/work.nix
blob: 416c4427a10ff0d196bea9449abf1baec4b841c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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
      prompt:
        fish_use_rprompt: true
    '';
  };
}