os/modules/core/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
334 B
Nix
Raw Normal View History

{
2022-11-20 22:28:23 +00:00
config,
lib,
...
}:
with lib; let
cfg = config.pub-solar.core;
2023-10-24 15:56:14 +00:00
psCfg = config.pub-solar;
2022-11-20 22:28:23 +00:00
in {
imports = [
./boot.nix
2022-08-14 18:09:38 +00:00
./hibernation.nix
./i18n.nix
./networking.nix
./packages.nix
2024-03-30 14:35:32 +00:00
./hardening.nix
];
# Service that makes Out of Memory Killer more effective
services.earlyoom.enable = true;
}