From 85972ddcb6698f4a2e3ef106804b807c0c38546d Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sun, 19 Sep 2021 10:44:25 -0400 Subject: [PATCH] Fix syntax error --- README.org | 2 +- hosts/nixos/hardware.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index fd90712..f35ffb3 100644 --- a/README.org +++ b/README.org @@ -558,7 +558,7 @@ The file system for this host is a single 24GB =QCOW= file, a format for disk im }; swapDevices = - [ { device = "/dev/disk/by-label/swap"; + [ { device = "/dev/disk/by-label/swap"; }; ]; } #+END_SRC diff --git a/hosts/nixos/hardware.nix b/hosts/nixos/hardware.nix index f66adbe..6193f88 100644 --- a/hosts/nixos/hardware.nix +++ b/hosts/nixos/hardware.nix @@ -21,6 +21,6 @@ }; swapDevices = - [ { device = "/dev/disk/by-label/swap"; + [ { device = "/dev/disk/by-label/swap"; }; ]; }