mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 19:01:43 +01:00
10 lines
151 B
Nix
10 lines
151 B
Nix
{
|
|
mylib,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = mylib.scanPaths ./.;
|
|
|
|
boot.loader.timeout = lib.mkForce 10; # wait for x seconds to select the boot entry
|
|
}
|