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 | |
parent | 1deb002e1908cfa6d2f40b602953bd3e30c7f73e (diff) | |
parent | 07e5ece6f65952f1b88d5c2cea9da4a9137b7567 (diff) |
Merge branch 'staging/jeschli' of prism.r:stockholm
Diffstat (limited to 'krebs/6tests/data')
-rw-r--r-- | krebs/6tests/data/test-config.nix | 22 | ||||
-rw-r--r-- | krebs/6tests/data/test-source.nix | 12 |
2 files changed, 34 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; + }; +} diff --git a/krebs/6tests/data/test-source.nix b/krebs/6tests/data/test-source.nix new file mode 100644 index 000000000..dfc6b3297 --- /dev/null +++ b/krebs/6tests/data/test-source.nix @@ -0,0 +1,12 @@ +with import <stockholm/lib>; +evalSource "" [{ + nixos-config = { + symlink.target = toString ./test-config; + }; + nixpkgs = { + symlink.target = toString <nixpkgs>; + }; + stockholm = { + symlink.target = toString <stockholm>; + }; +}] |