summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--modules/systemd-boot.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/systemd-boot.nix b/modules/systemd-boot.nix
new file mode 100644
index 0000000..4f7ca36
--- /dev/null
+++ b/modules/systemd-boot.nix
@@ -0,0 +1,7 @@
+{ config, pkgs, ... }:
+
+{ boot.loader.systemd-boot.enable = true;
+  boot.loader.efi.canTouchEfiVariables = true;
+  boot.vesa = true;
+  boot.earlyVconsoleSetup = true;
+}