aboutsummaryrefslogtreecommitdiffstats
path: root/nixos/systemd-boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/systemd-boot.nix')
-rw-r--r--nixos/systemd-boot.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/systemd-boot.nix b/nixos/systemd-boot.nix
new file mode 100644
index 0000000..cb3cd23
--- /dev/null
+++ b/nixos/systemd-boot.nix
@@ -0,0 +1,12 @@
+{
+ boot = {
+ loader = {
+ grub.device = "/dev/vda";
+# efi.canTouchEfiVariables = true;
+# systemd-boot = {
+# enable = true;
+# configurationLimit = 5;
+# };
+ };
+ };
+}