diff options
author | Markus Hihn <markus.hihn@dcso.de> | 2017-12-20 21:38:35 +0100 |
---|---|---|
committer | Markus Hihn <markus.hihn@dcso.de> | 2017-12-20 21:38:35 +0100 |
commit | 03fde41b6c223e65363df43a26e735459a3cf92a (patch) | |
tree | 9c7e4d6cc9444c3fff936bcc21c4580d53c5fcab /krebs/6tests/data/test-config.nix | |
parent | b1983327610628028021374e519baa27dc63d9bf (diff) | |
parent | a5d7056ccba9fb5f3495390ad1213e133e44fa78 (diff) |
Merge branch 'master' of prism.r:stockholm
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; + }; +} |