From 2927edcb95fe0c42af8f465ee0b2ed4e356d5c53 Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 24 Mar 2024 13:18:27 +0100 Subject: [PATCH] modules/clerie-system-upgrade: migrate option type from types.string to types.str --- modules/clerie-system-upgrade/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clerie-system-upgrade/default.nix b/modules/clerie-system-upgrade/default.nix index b6c92ba..38eb1c1 100644 --- a/modules/clerie-system-upgrade/default.nix +++ b/modules/clerie-system-upgrade/default.nix @@ -21,7 +21,7 @@ in description = "Automatically check and install upgrades"; }; startAt = mkOption { - type = with types; nullOr string; + type = with types; nullOr str; default = null; description = "Systemd time string for starting the unit"; };