mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
22 lines
428 B
Nix
22 lines
428 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../base/core.nix
|
|
../base/i18n.nix
|
|
../base/monitoring.nix
|
|
../base/nix.nix
|
|
../base/packages.nix
|
|
../base/ssh.nix
|
|
../base/user-group.nix
|
|
|
|
../../base.nix
|
|
];
|
|
|
|
boot.loader.timeout = lib.mkForce 3; # wait for 3 seconds to select the boot entry
|
|
# Fix: jasper is marked as broken, refusing to evaluate.
|
|
environment.enableAllTerminfo = lib.mkForce false;
|
|
}
|