stockholm/shared/1systems/test-arch.nix

33 lines
494 B
Nix
Raw Normal View History

2015-11-13 13:05:19 +01:00
{ config, pkgs, ... }:
2015-10-21 01:32:44 +02:00
2015-11-13 13:05:19 +01:00
{
2015-10-21 01:32:44 +02:00
imports = [
2016-02-15 16:27:11 +01:00
../.
2015-10-21 01:32:44 +02:00
{
boot.loader.grub = {
device = "/dev/sda";
splashImage = null;
};
boot.initrd.availableKernelModules = [
"ata_piix"
"vmw_pvscsi"
];
fileSystems."/" = {
device = "/dev/sda1";
};
}
{
networking.dhcpcd.allowInterfaces = [
"enp*"
];
}
{
sound.enable = false;
}
];
krebs.build.host = config.krebs.hosts.test-arch;
}