disable gpu

This commit is contained in:
Andrew Kidd 2025-01-03 12:36:19 +00:00
parent b785e594f3
commit 601069f892
3 changed files with 3 additions and 2 deletions

View file

@ -22,6 +22,7 @@
"systemd.debug_shell=1" "systemd.debug_shell=1"
"systemd.log_level=debug" "systemd.log_level=debug"
"disable_splash" "disable_splash"
"nomodeset"
]; ];
netImage = netImage =

View file

@ -110,7 +110,7 @@ in
dt-overlays = lib.mkOption { dt-overlays = lib.mkOption {
type = with lib.types; attrsOf (submodule dt-overlay); type = with lib.types; attrsOf (submodule dt-overlay);
default = { }; default = { };
example = { vc4-fkms-v3d = { cma-256 = { enable = true; }; }; }; example = { vc4-kms-v3d = { cma-256 = { enable = true; }; }; };
description = "dtb overlays to apply"; description = "dtb overlays to apply";
}; };
}; };

View file

@ -285,7 +285,7 @@ in
}; };
}; };
dt-overlays = { dt-overlays = {
vc4-fkms-v3d = { vc4-kms-v3d = {
enable = lib.mkDefault true; enable = lib.mkDefault true;
params = { }; params = { };
}; };