diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-17 09:38:54 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-18 09:05:35 -0800 |
commit | 8c6671c18392eb13d0fbd57a90bcb1a7f3c63889 (patch) | |
tree | ef1b91791cf2e553fe1b251a8f8244467a0d136b /nix/users/fcuny/work.nix | |
parent | add support for overlays and add one for `sapi' (diff) | |
download | world-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.nix | 13 |
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 + ]; +} |