aboutsummaryrefslogtreecommitdiff
path: root/nix/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-08 15:38:58 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-08 15:38:58 -0800
commite36fb342f541988f4c83b22ed4b501061059bbef (patch)
tree281887df38841c7a54189b759756518b73e3915f /nix/profiles
parentadd support for devshell and pre-commit-hooks again (diff)
downloadinfra-e36fb342f541988f4c83b22ed4b501061059bbef.tar.gz
fix conflict
Diffstat (limited to 'nix/profiles')
-rw-r--r--nix/profiles/home-manager/work.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/nix/profiles/home-manager/work.nix b/nix/profiles/home-manager/work.nix
deleted file mode 100644
index f60c8fc..0000000
--- a/nix/profiles/home-manager/work.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ 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
- kubelogin-oidc # OIDC plugin
- k9s # object explorer
-
- boundary
- nomad-pack
- ];
-
- programs.fish.shellAliases = {
- k = "kubectl";
- kctx = "kubie ctx";
- };
-
- home.file.kubie = {
- target = ".kube/kubie.yaml";
- text = ''
- shell: fish
- configs:
- include:
- - ~/.kube/rksconfig # https://raw.github.rbx.com/Roblox/cell-lifecycle/master/rks/kubeconfig
- prompt:
- fish_use_rprompt: true
- '';
- };
-}