diff options
author | EuAndreh <eu@euandre.org> | 2020-11-29 19:58:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-11-29 19:58:39 -0300 |
commit | 34c331c9048e322e8d1391c049ef0eb5cc3b7f14 (patch) | |
tree | 4ada9b5526e60794cf693b24afa11081f86fcb30 /sync/vps.scm | |
parent | vps.scm: Refactor namespaces and add CI mcron jobs (diff) | |
download | server-34c331c9048e322e8d1391c049ef0eb5cc3b7f14.tar.gz server-34c331c9048e322e8d1391c049ef0eb5cc3b7f14.tar.xz |
vps.scm: Stop prefixing (gnu) and (guix) modules
Diffstat (limited to '')
-rw-r--r-- | sync/vps.scm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sync/vps.scm b/sync/vps.scm index 16be8cf..0ca0e35 100644 --- a/sync/vps.scm +++ b/sync/vps.scm @@ -1,7 +1,7 @@ -(use-modules ((gnu) #:prefix gnu:) - ((guix) #:prefix guix:) +(use-modules (guix gexp) + (gnu) + (guix) ((guix build utils) #:prefix utils:) - ((guix gexp) #:prefix gexp:) ((srfi srfi-1) #:prefix srfi-1:) ((ice-9 textual-ports) #:prefix textual-ports:) ((ice-9 ftw) #:prefix ftw:) @@ -9,17 +9,17 @@ ((ice-9 rdelim) #:prefix rdelim:) ((ice-9 string-fun) #:prefix string-fun:)) -(gnu:use-package-modules ssh - backup - version-control) -(gnu:use-service-modules networking - ssh - mcron - admin - mail - web - certbot - cgit) +(use-package-modules ssh + backup + version-control) +(use-service-modules networking + ssh + mcron + admin + mail + web + certbot + cgit) @@ -276,7 +276,7 @@ root ALL=(ALL) ALL (define opensmtpd-config ;; FIXME - (gexp:plain-file "euandreh-smtpd.conf" (string-append " + (plain-file "euandreh-smtpd.conf" (string-append " listen on eth0 # File comes from mail-aliases-service-type table aliases file:/etc/aliases |