Files
nixconfig/systems/sandbox/default.nix
2026-06-01 22:06:28 +02:00

10 lines
185 B
Nix

{ config, inputs, ... }: {
imports = [ ./hardware.nix ../../modules/server ];
swapDevices = [ {
device = "/swapfile";
size = 4 * 1024; # Size in megabytes (4 GB)
} ];
}