mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:54:28 +01:00
23 lines
361 B
Nix
23 lines
361 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../base/btrbk.nix
|
|
../base/core.nix
|
|
../base/i18n.nix
|
|
../base/monitoring.nix
|
|
../base/nix.nix
|
|
../base/packages.nix
|
|
../base/ssh.nix
|
|
../base/user-group.nix
|
|
|
|
../../base
|
|
];
|
|
|
|
# Fix: jasper is marked as broken, refusing to evaluate.
|
|
environment.enableAllTerminfo = lib.mkForce false;
|
|
}
|