rename tree to modules

This commit is contained in:
Callum Leslie 2026-04-22 18:54:27 +01:00
parent cc0d8d78d3
commit 7404996570
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
13 changed files with 72 additions and 51 deletions

24
modules/boot.nix Normal file
View file

@ -0,0 +1,24 @@
{ ... }:
{
flake.nixosModules.boot = {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
plymouth.enable = false;
# consoleLogLevel = 0;
# initrd.verbose = false;
# kernelParams = [
# "quiet"
# "splash"
# "boot.shell_on_fail"
# "loglevel=3"
# "rd.systemd.show_status=false"
# "rd.udev.log_level=3"
# "udev.log_priority=3"
# ];
};
system.stateVersion = "24.05";
};
}