diff options
| author | EuAndreh <eu@euandre.org> | 2020-11-26 19:33:58 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2020-11-26 19:33:58 -0300 |
| commit | 2c635466607dd742704f7a6311f5311b02b6405b (patch) | |
| tree | b55524ed4c509c0f3081eb06602f11681c0268c5 /sync | |
| parent | vps.scm: Indent (operating-system ...) expression (diff) | |
| download | server-2c635466607dd742704f7a6311f5311b02b6405b.tar.gz server-2c635466607dd742704f7a6311f5311b02b6405b.tar.xz | |
vps.scm: Use symbols for declaring packages
Diffstat (limited to 'sync')
| -rw-r--r-- | sync/vps.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sync/vps.scm b/sync/vps.scm index 890ad25..96049fc 100644 --- a/sync/vps.scm +++ b/sync/vps.scm @@ -73,10 +73,10 @@ pki " mail-domain " key \"" (tls-priv-for mail-domain) "\"")) %base-user-accounts)) (sudoers-file (plain-file "sudoers" sudoers)) (packages - (append (map specification->package - '("git" - "nss-certs" - "rsync")) + (append (map (compose list specification->package+output symbol->string) + '(git + nss-certs + rsync)) %base-packages)) (services (append |
