14 lines
144 B
Nix
14 lines
144 B
Nix
{ ... }:
|
|
let
|
|
inherit (builtins) readFile;
|
|
in
|
|
{
|
|
imports = [];
|
|
|
|
|
|
boot.loader.systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
};
|
|
}
|