6 lines
154 B
Bash
6 lines
154 B
Bash
#!/usr/bin/env bash
|
|
export HOST_SHELL="$(command -v "$SHELL")"
|
|
eval "$(nix print-dev-env .#remoteenv)"
|
|
echo Entered "$(hostname --fqdn)"
|
|
df -h /nix/store
|