From fbb6b500ea981b3fe7603288f0496cc3333245bf Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 16 Mar 2023 09:43:31 -0300 Subject: queue.scm: Split postfix-service-type into {local,internet}-postfix-service-type Also add those to `Makefile` as separate targets. BONUS: better naming of Guix targets in `Makefile`. Instead of `all-{packages,services}`, it is now `guix-{packages,services}`, as there are other packages being built that do not belong to Guix, and maybe more services in the future. --- tests/local-system.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/local-system.scm (limited to 'tests/local-system.scm') diff --git a/tests/local-system.scm b/tests/local-system.scm new file mode 100644 index 0000000..abf09a8 --- /dev/null +++ b/tests/local-system.scm @@ -0,0 +1,25 @@ +(use-modules + ((org euandre queue) #:prefix queue:) + (gnu)) +(use-package-modules) +(use-service-modules) + +(operating-system + (host-name "a-local-test-host") + (services + (append + (list + (service queue:local-postfix-service-type)) + %base-services)) + (bootloader + (bootloader-configuration + (bootloader grub-bootloader))) + (file-systems + (append + (list + (file-system + (mount-point "/") + (type "btrfs") + (device + (uuid "2c66de32-dde7-ea35-750a-a1ca47a58d45" 'btrfs)))) + %base-file-systems))) -- cgit v1.2.3