commit | 33c8b481118cbd8ed8665b0667ca119d9910bd47 | [log] [tgz] |
---|---|---|
author | Samuel Shuert <coded@clicks.codes> | Tue Feb 20 21:02:54 2024 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Tue Feb 20 21:19:06 2024 +0000 |
tree | 9246b961851cd0aa14ee7df12926738e7a09f916 | |
parent | bd7578f9218f9cebf5993bff4b0056b6d6f87589 [diff] |
Fix nix option related camel casing. This commit fixes the issue introduced in Change 383 (ID: Ie6d40f809b2662268a9a6fa8b241641bbfef9442) Change-Id: Ie872bd7600c3f8e61895cbfb1f8fe2e00041168a Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/407 Reviewed-by: Skyler Grey <minion@clicks.codes> Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/systems/x86_64-linux/shorthair/console/default.nix b/systems/x86_64-linux/shorthair/console/default.nix index d54e9fb..bfb89e8 100644 --- a/systems/x86_64-linux/shorthair/console/default.nix +++ b/systems/x86_64-linux/shorthair/console/default.nix
@@ -1,4 +1,4 @@ { ... }: { - console.keymap = "us"; + console.keyMap = "us"; }
diff --git a/systems/x86_64-linux/shorthair/networking/default.nix b/systems/x86_64-linux/shorthair/networking/default.nix index 694d5f9..7bafae5 100644 --- a/systems/x86_64-linux/shorthair/networking/default.nix +++ b/systems/x86_64-linux/shorthair/networking/default.nix
@@ -2,7 +2,7 @@ { networking = { - hostname = "shorthair"; + hostName = "shorthair"; useDHCP = lib.mkDefault true; }; }