mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 15:34:13 +01:00
20 lines
493 B
Nix
20 lines
493 B
Nix
{lib, ...}: {
|
|
# =========================================================================
|
|
# Base NixOS Configuration
|
|
# =========================================================================
|
|
|
|
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
|
|
}
|