1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 08:17:01 +00:00

set default to null for FlashDateSeparators

This commit is contained in:
mmenanno 2024-10-20 15:33:14 -04:00
parent cecdf6d21e
commit 873098d4a3
No known key found for this signature in database

View file

@ -66,8 +66,8 @@ with lib;
};
system.defaults.menuExtraClock.FlashDateSeparators = mkOption {
type = types.bool;
default = false;
type = types.nullOr types.bool;
default = null;
description = ''
When enabled, the time separators will flash on and off each second.
'';