remove boot systemd from master, ref new branch

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-01-01 23:19:13 -06:00
parent b21e20de05
commit 3f41ca6bd5
4 changed files with 24 additions and 55 deletions

View file

@ -1,35 +0,0 @@
{
inputs = {
};
outputs =
{
self,
...
}:
{
nixosModules = {
default =
{
config,
lib,
...
}:
{
config = {
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "keep";
};
timeout = 5;
efi = {
canTouchEfiVariables = true;
};
};
};
};
};
};
}