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 7fcc8af837
commit 2d522b0d4e
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;
};
};
};
};
};
};
}