summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-20 06:02:08 -0300
committerEuAndreh <eu@euandre.org>2024-08-20 06:02:08 -0300
commitd87be643afffa6f1397ecda402155081c02931fd (patch)
treeda47d454a83006ab4b2a0a9321e66315c64469f9
parentsystem.scm: Change locale to fr_FR.UTF-8 (diff)
downloadasami-d87be643afffa6f1397ecda402155081c02931fd.tar.gz
asami-d87be643afffa6f1397ecda402155081c02931fd.tar.xz
system.scm: Reorder file-systems <-> swap-devices
-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 89e7e19..418aa1b 100644
--- a/src/guix/system.scm
+++ b/src/guix/system.scm
@@ -119,11 +119,6 @@
(bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/vda"))))
- (swap-devices
- (list
- (swap-space
- (target
- (uuid "fde5e4a8-acc2-4c9a-9712-5494724c2c04")))))
(file-systems
(append
(list
@@ -143,4 +138,9 @@
(device
(uuid "d675e98c-3f48-44d1-b085-36c476d9313f" 'btrfs))
(type "btrfs")))
- %base-file-systems)))
+ %base-file-systems))
+ (swap-devices
+ (list
+ (swap-space
+ (target
+ (uuid "fde5e4a8-acc2-4c9a-9712-5494724c2c04"))))))