diff options
author | EuAndreh <eu@euandre.org> | 2025-03-14 06:44:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-14 06:44:12 -0300 |
commit | d14ff5a131049aa16a801bf6b07a6e1d8ff15691 (patch) | |
tree | b24da026ed19a698bff5219e7b7a0a6b28ec8d32 | |
parent | system.scm: Add cicd-service-type (diff) | |
download | server-d14ff5a131049aa16a801bf6b07a6e1d8ff15691.tar.gz server-d14ff5a131049aa16a801bf6b07a6e1d8ff15691.tar.xz |
system.scm: Indent service configurations
-rw-r--r-- | src/guix/system.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm index 0e941a7..9169e9e 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -62,9 +62,13 @@ (service ntp-service-type) (service dhcp-client-service-type) (service fail2ban-service-type) - (service knot-service-type (q:knot-zones-configuration +tld+ +ipv4+ +ipv6+)) - (service openssh-service-type (q:openssh-default-configuration (pkg:users->keys +users+))) - (service certbot-service-type (q:tld-certbot-configuration +tld+)) + (service knot-service-type + (q:knot-zones-configuration +tld+ +ipv4+ +ipv6+)) + (service openssh-service-type + (q:openssh-default-configuration + (pkg:users->keys +users+))) + (service certbot-service-type + (q:tld-certbot-configuration +tld+)) (service nginx-service-type (nginx-configuration (server-blocks |