Customize the console theme
diff --git a/modules/console.nix b/modules/console.nix
new file mode 100644
index 0000000..8ca8a80
--- /dev/null
+++ b/modules/console.nix
@@ -0,0 +1,29 @@
+{
+  config = {
+    boot = {
+      kernelParams = ["consoleblank=60"];
+      consoleLogLevel = 2;
+    };
+    console = {
+      font = "LigaRobotoMono-Regular";
+      colors = [
+        "383a42"
+        "e45649"
+        "50a14f"
+        "c18401"
+        "0184bc"
+        "a626a4"
+        "0997b3"
+        "fafafa"
+        "383a42"
+        "e45649"
+        "50a14f"
+        "c18401"
+        "0184bc"
+        "a626a4"
+        "0997b3"
+        "fafafa"
+      ];
+    };
+  };
+}