diff options
author | EuAndreh <eu@euandre.org> | 2025-03-14 06:45:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-14 06:45:12 -0300 |
commit | c85d0472349e6c05eebe8318f7c3a7023a7f61e2 (patch) | |
tree | 877c507e44581c2f929d687cb331be15d7335b03 | |
parent | system.scm: Enable cgit and nginx services (diff) | |
download | asami-c85d0472349e6c05eebe8318f7c3a7023a7f61e2.tar.gz asami-c85d0472349e6c05eebe8318f7c3a7023a7f61e2.tar.xz |
system.scm: Move swapfile from / to /mnt/production
-rw-r--r-- | src/guix/system.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm index a325f37..d6fc03b 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -252,9 +252,9 @@ ;; # chmod 600 /swapfile ;; # mkswap /swapfile ;; # swapon /swapfile - (target "/swapfile") + (target "/mnt/production/swapfile") (dependencies - (filter (file-system-mount-point-predicate "/") + (filter (file-system-mount-point-predicate "/mnt/production") file-systems))) (swap-space (target |