NixOS-Config/modules/system/devices/boot/systemd/default.nix

10 lines
117 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ ... }:
2024-08-25 07:45:05 -04:00
{
2024-11-24 20:46:35 -05:00
imports = [ ./services ];
2024-08-25 07:45:05 -04:00
boot.loader.systemd-boot = {
enable = true;
2024-10-15 02:40:43 -04:00
editor = false;
2024-08-25 07:45:05 -04:00
};
}