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,7 +1,7 @@
{
age.secrets."borg_ed25519".file = ../secrets/borg_ed25519;
age.secrets."borg_pass".file = ../secrets/borg_pass;
systemd.tmpfiles.settings = {
"99-borgdatabasebackups"."/var/backup/postgres".d = {
user = "root";

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";}
];
}