nix-build: clean tmpfs on reboot

This commit is contained in:
Sandro - 2021-10-31 18:59:46 +01:00
parent ff6a759f18
commit 502f04040f
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 7 additions and 2 deletions

View File

@ -6,9 +6,14 @@
];
boot = {
loader.systemd-boot.enable = true;
loader.efi.efiSysMountPoint = "/boot";
loader = {
systemd-boot.enable = true;
efi.efiSysMountPoint = "/boot";
};
tmpOnTmpfs = true;
cleanTmpDir = true;
kernelModules = [ "kvm-intel" ];
binfmt.emulatedSystems = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
};