diff options
author | lassulus <lass@aidsballs.de> | 2015-11-13 13:05:19 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-11-13 13:05:19 +0100 |
commit | 5847c15bfaac52e1da5239ba54e8a40738865dfe (patch) | |
tree | 9a5d7ff60e8c091bcdf1cc045d605cd2c6f2ce49 /shared/1systems/test-arch.nix | |
parent | c501f48d06d765a52037d2966b95c19aff20d83b (diff) |
move testhosts to shared from lass
Diffstat (limited to 'shared/1systems/test-arch.nix')
-rw-r--r-- | shared/1systems/test-arch.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/shared/1systems/test-arch.nix b/shared/1systems/test-arch.nix new file mode 100644 index 0000000..ece2094 --- /dev/null +++ b/shared/1systems/test-arch.nix @@ -0,0 +1,32 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ../2configs/base.nix + { + 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; +} |