1
0

Extract settings for Darwin

This commit is contained in:
2025-06-25 23:35:24 -07:00
parent 1061e07deb
commit 87929055af
4 changed files with 14 additions and 12 deletions

15
system/linux/system.nix Normal file
View File

@@ -0,0 +1,15 @@
{ ... }:
{
# Environment package management
# Remove unnecessary default packages to keep system minimal
# Default packages usually include basic utilities that might not be needed
environment.defaultPackages = [ ];
# Clean up temporary files on every boot
# This prevents /tmp from accumulating old files and filling up
boot.tmp.cleanOnBoot = true;
# Disable coredumps to prevent filling up /var/lib/systemd/coredump/
# Coredumps can quickly consume large amounts of disk space
systemd.coredump.enable = false;
}