aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-22 06:18:34 -0300
committerEuAndreh <eu@euandre.org>2024-08-22 06:18:34 -0300
commitc2b1899f70cc7882f6f4d02b48814f388fbec494 (patch)
treeb5d5bc7a54b4674e09d1c5c71d41bc3cf6603514
parentsrc/config/offsite-ssh.txt: Derive from Makefile and include in /etc/ (diff)
downloadserver-c2b1899f70cc7882f6f4d02b48814f388fbec494.tar.gz
server-c2b1899f70cc7882f6f4d02b48814f388fbec494.tar.xz
system.scm: Only reorder (swap-devices ...) with (file-systems ...)
-rw-r--r--src/guix/system.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm
index 5898531..4df668e 100644
--- a/src/guix/system.scm
+++ b/src/guix/system.scm
@@ -150,11 +150,6 @@
(bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/vda"))))
- (swap-devices
- (list
- (swap-space
- (target
- (uuid "94b47d91-3542-438a-84a9-859fe347ce09")))))
(file-systems
(append
(list
@@ -174,4 +169,9 @@
(device
(uuid "6632849d-f180-4740-86e6-a519d43ab75a" 'btrfs))
(type "btrfs")))
- %base-file-systems)))
+ %base-file-systems))
+ (swap-devices
+ (list
+ (swap-space
+ (target
+ (uuid "94b47d91-3542-438a-84a9-859fe347ce09"))))))