13 lines
233 B
Nix
13 lines
233 B
Nix
{ config, factsGenerator, clanLib, ... }:
|
|
{
|
|
imports = [
|
|
./disko-config.nix
|
|
./hardware-configuration.nix
|
|
./hetzner.nix # to more me to components
|
|
];
|
|
|
|
boot.tmp.useTmpfs = true; # make /tmp a tmpfs (performance!)
|
|
|
|
|
|
|
|
}
|