This commit is contained in:
root 2025-11-08 20:00:23 +00:00
parent 55c7a2532a
commit 24de6d6d64
2 changed files with 7 additions and 4 deletions

View file

@ -1,11 +1,14 @@
{ lib, modulesPath, ... }:
{
lib,
modulesPath,
...
}: {
imports = [
./configuration.nix
./hardware-configuration.nix
./networking.nix
"${modulesPath}/profiles/hardened.nix"
{ environment.memoryAllocator.provider = lib.mkForce "libc"; }
{environment.memoryAllocator.provider = lib.mkForce "libc";}
];
}