From 759900aa98bed710e12e6ecd12eb55b70a3fa8de Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Fri, 23 Aug 2024 16:09:14 +0000 Subject: [PATCH] nixosMod/vmCommon: fix settings requiring lists --- nix/nixos-modules/vmCommon.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/nixos-modules/vmCommon.nix b/nix/nixos-modules/vmCommon.nix index 6a2a0e5..9e82d3f 100644 --- a/nix/nixos-modules/vmCommon.nix +++ b/nix/nixos-modules/vmCommon.nix @@ -69,7 +69,7 @@ in nix.optimise = { # should not take long because of auto-optimise-store - dates = "05:30"; + dates = lib.singleton "05:30"; }; } @@ -80,7 +80,7 @@ in boot = { - kernelParams = "console=ttyS0,115200"; + kernelParams = lib.singleton "console=ttyS0,115200"; loader = { efi.canTouchEfiVariables = true;