From 05674c993e8bbf4cf6e0466e54715a7bd1f4e55a Mon Sep 17 00:00:00 2001 From: ene Date: Tue, 21 Mar 2023 17:21:32 +0100 Subject: Fix(system/file_system_layout): Use str instead of int An int can't be coerced to a string, but this is needed to use it in the config file. --- hosts/lahmu/hardware/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosts') diff --git a/hosts/lahmu/hardware/default.nix b/hosts/lahmu/hardware/default.nix index b126e673..a5958933 100644 --- a/hosts/lahmu/hardware/default.nix +++ b/hosts/lahmu/hardware/default.nix @@ -21,7 +21,7 @@ ssd = true; swap = { uuid = "TO_BE_ADDED"; - resumeOffset = 10; + resumeOffset = "10"; }; }; -- cgit 1.4.1