diff options
author | tv <tv@krebsco.de> | 2017-12-27 17:09:35 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-12-27 17:09:35 +0100 |
commit | 6ed214fc77b537dc74b92bbc37e2d2d68dfd9131 (patch) | |
tree | 97e0ca20812fa54edfa0bd60460800ff2f18626e /krebs/6tests/data/test-config.nix | |
parent | 04b711f516c978e84b334a82008d40dfaad1de1b (diff) | |
parent | 3a41a73f1fcc32736ace08783d9bfee8a77f3f80 (diff) |
Merge remote-tracking branch 'prism/staging/test'
Diffstat (limited to 'krebs/6tests/data/test-config.nix')
-rw-r--r-- | krebs/6tests/data/test-config.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/krebs/6tests/data/test-config.nix b/krebs/6tests/data/test-config.nix new file mode 100644 index 000000000..f0927ddd9 --- /dev/null +++ b/krebs/6tests/data/test-config.nix @@ -0,0 +1,22 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + <stockholm/krebs> + <nixpkgs/nixos/modules/virtualisation/qemu-vm.nix> + <nixpkgs/nixos/modules/testing/test-instrumentation.nix> + ]; + + krebs.hosts.minimal = { + cores = 1; + secure = false; + }; + + boot.loader.grub.enable = false; + boot.loader.systemd-boot.enable = true; + + krebs.build = { + host = config.krebs.hosts.minimal; + user = config.krebs.users.krebs; + }; +} |