diff options
author | Griffin Smith <root@gws.fyi> | 2023-05-15T14·08-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-15T14·12+0000 |
commit | a538939b3e01300264f93a22515546b71f25e3d1 (patch) | |
tree | ab3bf8324ff54bb276bbd17a1abf8fde06876d03 | |
parent | 8bd7ced1fb0a5b598ec305a0b34d35f1efb1ce16 (diff) |
feat(grfn/system): Install cloud-utils on roswell r/6141
Change-Id: Ia3ad49be1cf81d84eac2f4d13191ef355007e450 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8574 Tested-by: BuildkiteCI Autosubmit: grfn <grfn@gws.fyi> Reviewed-by: grfn <grfn@gws.fyi>
-rw-r--r-- | users/grfn/system/system/machines/roswell.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/users/grfn/system/system/machines/roswell.nix b/users/grfn/system/system/machines/roswell.nix index bd3d0a1dfd5c..8287c95425ca 100644 --- a/users/grfn/system/system/machines/roswell.nix +++ b/users/grfn/system/system/machines/roswell.nix @@ -24,4 +24,8 @@ services.tailscale.enable = true; security.sudo.wheelNeedsPassword = false; + + environment.systemPackages = with pkgs; [ + cloud-utils + ]; } |