diff options
author | tv <tv@krebsco.de> | 2018-05-09 11:11:50 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-05-09 11:43:08 +0200 |
commit | 47c0b0261eabdf230bfc7a375a3a008a04b61c4a (patch) | |
tree | 5f63540493553f877ce823c4465dd2cf561765af /krebs/0tests/data/test-config.nix | |
parent | 3f3c12dcd06ba211a484aabf011880a83e5832fd (diff) |
krebs: 6tests -> 0tests
Diffstat (limited to 'krebs/0tests/data/test-config.nix')
-rw-r--r-- | krebs/0tests/data/test-config.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/krebs/0tests/data/test-config.nix b/krebs/0tests/data/test-config.nix new file mode 100644 index 000000000..f0927ddd9 --- /dev/null +++ b/krebs/0tests/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; + }; +} |