diff options
author | jeschli <jeschli@gmail.com> | 2018-01-05 20:53:19 +0100 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-01-05 20:53:19 +0100 |
commit | ea85e788ae2a6ca24ccb997372542f7f2a104080 (patch) | |
tree | 7e76adbefb82afa238c5eb3d13ec36e6d2f6610e /krebs/6tests/data/test-config.nix | |
parent | 1deb002e1908cfa6d2f40b602953bd3e30c7f73e (diff) | |
parent | 07e5ece6f65952f1b88d5c2cea9da4a9137b7567 (diff) |
Merge branch 'staging/jeschli' 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; + }; +} |