22 lines
334 B
Nix
22 lines
334 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.pub-solar.core;
|
|
psCfg = config.pub-solar;
|
|
in {
|
|
imports = [
|
|
./boot.nix
|
|
./hibernation.nix
|
|
./i18n.nix
|
|
./networking.nix
|
|
./packages.nix
|
|
./hardening.nix
|
|
];
|
|
|
|
# Service that makes Out of Memory Killer more effective
|
|
services.earlyoom.enable = true;
|
|
}
|