12 lines
235 B
Nix
12 lines
235 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix # Include the results of the hardware scan.
|
|
./mailserver.nix
|
|
./nginx.nix
|
|
./git.nix
|
|
];
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/vda";
|
|
}
|