update readme & harden system

This commit is contained in:
root 2025-11-08 19:30:57 +00:00
parent 59dd33d66c
commit 9231d08176
3 changed files with 12 additions and 13 deletions

View file

@ -6,7 +6,14 @@ TBC
## TODO's
See [TODO.md](TODO.md).
### In Progress
- Root on `tmpfs`
### Urgent
- N/A
### Important
- N/A
## LICENSE

12
TODO.md
View file

@ -1,12 +0,0 @@
# In Progress
- Borg Backup
# Urgent
- N/A
# Important
- NixOS Hardened
- `jemalloc` to replace `scudo` (Nextcloud PHP errors)
# Future
- Root on `tmpfs`

View file

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