commit | 4d5c5fb79900dfba656e43eaa74175b74543ad2a | [log] [tgz] |
---|---|---|
author | Samuel Shuert <coded@clicks.codes> | Sun Jun 09 09:39:11 2024 -0400 |
committer | Skyler Grey <minion@clicks.codes> | Sun Jun 09 15:26:05 2024 +0000 |
tree | 8997735d4e685a5e7f388f2fbb4fce485a71a958 | |
parent | 964e7f85ed01badaafa03675c9222f3a196acdca [diff] [blame] |
fix: Update incorrect option defaults and add semicolons Change-Id: I6d0be31dcef568b96005b4f97c82bc85c93477fe Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/735 Reviewed-by: Skyler Grey <minion@clicks.codes> Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/modules/home/wayland/default.nix b/modules/home/wayland/default.nix index 3ea8d65..be4965a 100644 --- a/modules/home/wayland/default.nix +++ b/modules/home/wayland/default.nix
@@ -24,10 +24,10 @@ default = "us"; }; variant = lib.mkOption { - type = lib.types.nullOr lib.types.str; + type = lib.types.str; description = "Keyboard layout variants, comma seperated"; example = "dvorak"; - default = null; + default = ""; }; };