nixos-config/machines/probe/hardware-configuration/default.nix

16 lines
272 B
Nix
Raw Normal View History

2024-06-21 22:33:32 +02:00
{ config, factsGenerator, clanLib, ... }:
{
imports = [
./disko-config.nix
./hardware-configuration.nix
];
boot.tmp.useTmpfs = true; # make /tmp a tmpfs (performance!)
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
}