diff options
author | EuAndreh <eu@euandre.org> | 2021-01-15 14:46:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-15 14:46:26 -0300 |
commit | ade1b9ece94f6ca87c2db7342e02568a2f494610 (patch) | |
tree | e38fd48f4d24664c5265f6645f077d4eb72005f9 | |
parent | vps.scm: Move host-name to variable (diff) | |
download | server-ade1b9ece94f6ca87c2db7342e02568a2f494610.tar.gz server-ade1b9ece94f6ca87c2db7342e02568a2f494610.tar.xz |
vps.scm: WIP start adding (machine ...) configuration
-rw-r--r-- | vps.scm | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -472,4 +472,16 @@ pki " mail-domain " key \"" (tls-priv-for mail-domain) "\""))) (type "ext4")) %base-file-systems)))) +(define my-machine + (machine + (operating-system my-system) + (environment managed-host-environment-type) + (configuration (machine-ssh-configuration + (host-name host-name) + (system "x86_64-linux) + (user "andreh") + (identity "~/.ssh/id_rsa.pub") + (port 1234))))) + +(list my-machine) my-system |