diff options
-rw-r--r-- | configs/cloudtop/.gitkeep | 0 | ||||
-rwxr-xr-x | configs/install | 2 | ||||
-rwxr-xr-x | configs/uninstall | 2 | ||||
-rw-r--r-- | shell.nix | 1 | ||||
-rw-r--r-- | tools/symlinkManager/main.go | 5 |
5 files changed, 2 insertions, 8 deletions
diff --git a/configs/cloudtop/.gitkeep b/configs/cloudtop/.gitkeep deleted file mode 100644 index e69de29bb2d1..000000000000 --- a/configs/cloudtop/.gitkeep +++ /dev/null diff --git a/configs/install b/configs/install index 62236a0dc5a3..d4d760e73f8d 100755 --- a/configs/install +++ b/configs/install @@ -7,8 +7,6 @@ case $(hostname) in (cd "$configs/desktop" && stow --target="$HOME" .);; $LAPTOP) (cd "$configs/work_laptop" && stow --target="$HOME" .);; - $CLOUDTOP) - (cd "$configs/cloudtop" && stow --target="$HOME" .);; esac (cd "$configs/shared" && stow --target="$HOME" .) diff --git a/configs/uninstall b/configs/uninstall index 7151843d6070..8a97dd06d827 100755 --- a/configs/uninstall +++ b/configs/uninstall @@ -7,8 +7,6 @@ case $(hostname) in (cd "$configs/desktop" && stow --delete --target="$HOME" .);; $LAPTOP) (cd "$configs/laptop" && stow --delete --target="$HOME" .);; - $CLOUDTOP) - (cd "$configs/cloudtop" && stow --delete --target="$HOME" .);; esac (cd "$configs/shared" && stow --delete --target="$HOME" .) diff --git a/shell.nix b/shell.nix index f3978bd69e1b..674ae1da08b7 100644 --- a/shell.nix +++ b/shell.nix @@ -10,5 +10,4 @@ pkgs.mkShell rec { NIX_PATH="nixpkgs=${NIXPKGS}:depot=${DEPOT}:briefcase=${BRIEFCASE}"; DESKTOP = "zeno.lon.corp.google.com"; LAPTOP = "seneca"; - CLOUDTOP = "wpcarro.c.googlers.com"; } diff --git a/tools/symlinkManager/main.go b/tools/symlinkManager/main.go index 5d133e37d97b..e682867fb850 100644 --- a/tools/symlinkManager/main.go +++ b/tools/symlinkManager/main.go @@ -12,9 +12,8 @@ import ( ) var hostnames = map[string]string{ - os.Getenv("DESKTOP"): "desktop", - os.Getenv("LAPTOP"): "work_laptop", - os.Getenv("CLOUDTOP"): "cloudtop", + os.Getenv("DESKTOP"): "desktop", + os.Getenv("LAPTOP"): "work_laptop", } func main() { |