about summary refs log tree commit diff
path: root/nix/users/fcuny/work.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-17 09:38:54 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-18 09:05:35 -0800
commit8c6671c18392eb13d0fbd57a90bcb1a7f3c63889 (patch)
treeef1b91791cf2e553fe1b251a8f8244467a0d136b /nix/users/fcuny/work.nix
parentadd support for overlays and add one for `sapi' (diff)
downloadworld-8c6671c18392eb13d0fbd57a90bcb1a7f3c63889.tar.gz
install some tools only on work machine
Diffstat (limited to 'nix/users/fcuny/work.nix')
-rw-r--r--nix/users/fcuny/work.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nix/users/fcuny/work.nix b/nix/users/fcuny/work.nix
new file mode 100644
index 0000000..cc80104
--- /dev/null
+++ b/nix/users/fcuny/work.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }: {
+  imports = [ ./k8s.nix ];
+
+  home.packages = with pkgs; [
+    # hashicorp
+    boundary
+    nomad-pack
+    tfswitch
+
+    # for ssh
+    sapi
+  ];
+}