Set time zone decleratively.

This sets the time zone as the default is UTC and I (Coded) live in EST

Change-Id: I0129d1b2751a6688f04c8d0845770b8d9a216843
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/429
Reviewed-by: Skyler Grey <minion@clicks.codes>
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/systems/x86_64-linux/greylag/default.nix b/systems/x86_64-linux/greylag/default.nix
index b611c0e..f1194ad 100644
--- a/systems/x86_64-linux/greylag/default.nix
+++ b/systems/x86_64-linux/greylag/default.nix
@@ -6,6 +6,7 @@
     ./console
     ./cpu
     ./networking
+    ./time
     ./users
   ];
 }
diff --git a/systems/x86_64-linux/greylag/time/default.nix b/systems/x86_64-linux/greylag/time/default.nix
new file mode 100644
index 0000000..231eaae
--- /dev/null
+++ b/systems/x86_64-linux/greylag/time/default.nix
@@ -0,0 +1,3 @@
+{ ... }: {
+  time.timeZone = "UTC";
+}
diff --git a/systems/x86_64-linux/shorthair/default.nix b/systems/x86_64-linux/shorthair/default.nix
index 5eb504b..02f4864 100644
--- a/systems/x86_64-linux/shorthair/default.nix
+++ b/systems/x86_64-linux/shorthair/default.nix
@@ -8,5 +8,6 @@
     ./networking
     ./openrgb
     ./users
+    ./time
   ];
 }
diff --git a/systems/x86_64-linux/shorthair/time/default.nix b/systems/x86_64-linux/shorthair/time/default.nix
new file mode 100644
index 0000000..dc74a51
--- /dev/null
+++ b/systems/x86_64-linux/shorthair/time/default.nix
@@ -0,0 +1,3 @@
+{ ... }: {
+  time.timeZone = "EST";
+}