diff options
| author | Caroline Larimore <caroline@larimo.re> | 2026-01-09 13:41:54 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2026-01-09 13:41:54 -0800 |
| commit | 60bed24287e7ff2e6b436b19224e535b5a889c04 (patch) | |
| tree | b4eb542c8600f009454eb765b04cb31f3b93574e /systems/x86_64-linux | |
| parent | 25aeff992f190c65156b4baa04b215b7fb7a597f (diff) | |
c-pc: enable swap partition
Diffstat (limited to 'systems/x86_64-linux')
| -rw-r--r-- | systems/x86_64-linux/c-pc/hardware.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/systems/x86_64-linux/c-pc/hardware.nix b/systems/x86_64-linux/c-pc/hardware.nix index 7425abb..d00d962 100644 --- a/systems/x86_64-linux/c-pc/hardware.nix +++ b/systems/x86_64-linux/c-pc/hardware.nix @@ -51,7 +51,9 @@ "/mnt/4tb" = { fsType = "ext4"; device = "/dev/disk/by-label/4tb"; }; }; - swapDevices = [ ]; + swapDevices = [ + { device = "/dev/disk/by-label/swap"; } + ]; hardware.enableRedistributableFirmware = true; hardware.cpu.amd.updateMicrocode = true; |