From f12b52a0f280ee6e9fa62f73becd629306c6fef1 Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 27 Mar 2024 14:07:33 +0100 Subject: [PATCH] chore: reenable swap --- hosts/desktopnix/fs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/desktopnix/fs.nix b/hosts/desktopnix/fs.nix index 525add6..5a7a878 100644 --- a/hosts/desktopnix/fs.nix +++ b/hosts/desktopnix/fs.nix @@ -12,7 +12,7 @@ type = "gpt"; partitions = { boot = (partEfi "0%" "2GiB") // {device = "${device}-part1";}; - #(partSwap "swap" "2GiB" "18GiB") + swap = (partSwap "2GiB" "18GiB") // {device = "${device}-part2";}; "rpool_m2-ssd" = (partLuksZfs "m2-ssd" "rpool" "18GiB" "100%") // {device = "${device}-part3";}; }; };