aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2021-01-02 15:45:11 +0100
committerMx Kookie <kookie@spacekookie.de>2021-01-02 15:45:11 +0100
commit042efe23d3ef74730177d2d3294e512a3e697022 (patch)
tree2a4410556bd9a16e835f4775888983f2a9a1bad9
parentaf8b681b5ef80871e6586061568b8ab8af2d85e3 (diff)
corenix: add uwu configuration
-rw-r--r--infra/corenix/configs/kookie/splash.jpgbin0 -> 18316 bytes
-rw-r--r--infra/corenix/configs/kookie/uwu.nix17
-rw-r--r--infra/corenix/flake.nix1
3 files changed, 18 insertions, 0 deletions
diff --git a/infra/corenix/configs/kookie/splash.jpg b/infra/corenix/configs/kookie/splash.jpg
new file mode 100644
index 000000000000..35ab958959a3
--- /dev/null
+++ b/infra/corenix/configs/kookie/splash.jpg
Binary files differ
diff --git a/infra/corenix/configs/kookie/uwu.nix b/infra/corenix/configs/kookie/uwu.nix
new file mode 100644
index 000000000000..3dc56baf8faf
--- /dev/null
+++ b/infra/corenix/configs/kookie/uwu.nix
@@ -0,0 +1,17 @@
+{ lib, ... }:
+
+{
+ imports = [ ../boards/x230.nix ../common.nix ];
+
+ seabios.enable = true;
+
+ corenix = {
+ corebootConfig = {
+ CONFIG_LINEAR_FRAMEBUFFER_MAX_WIDTH = "1366";
+ CONFIG_LINEAR_FRAMEBUFFER_MAX_HEIGHT = "768";
+ };
+
+ extraFiles."background.png".src = lib.mkForce ./splash.jpg;
+
+ };
+}
diff --git a/infra/corenix/flake.nix b/infra/corenix/flake.nix
index 6864f3840909..ca8d5a6e7f53 100644
--- a/infra/corenix/flake.nix
+++ b/infra/corenix/flake.nix
@@ -36,6 +36,7 @@
milan-x1c = makeDevice ./configs/milan/milan-x1c.nix;
milan-x230t = makeDevice ./configs/milan/milan-x230t.nix;
milan-x230-fhd = makeDevice ./configs/milan/milan-x230-fhd.nix;
+ kookie-uwu = makeDevice ./configs/kookie/uwu.nix;
};
in {