stockholm/krebs/1systems/test-arch/config.nix

34 lines
538 B
Nix
Raw Normal View History

2015-11-13 12:05:19 +00:00
{ config, pkgs, ... }:
2015-10-20 23:32:44 +00:00
2015-11-13 12:05:19 +00:00
{
2015-10-20 23:32:44 +00:00
imports = [
2017-07-13 22:17:58 +00:00
<stockholm/krebs>
<stockholm/krebs/2configs>
2015-10-20 23:32:44 +00: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;
}