diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/guix/system.scm | 12 |
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")))))) |