From abdbdbebf613da18cb1b89e6c9b2216227046c0a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 12 Feb 2016 14:31:23 +0100 Subject: [PATCH] nixos/tests/simple.nix: Include minimal.nix This reduces the amount of rebuilds (particularly some X11 stuff) after changing some dependencies like systemd. --- nixos/tests/simple.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/tests/simple.nix b/nixos/tests/simple.nix index 287712be316d..04d624adcfe9 100644 --- a/nixos/tests/simple.nix +++ b/nixos/tests/simple.nix @@ -4,7 +4,9 @@ import ./make-test.nix ({ pkgs, ...} : { maintainers = [ eelco ]; }; - machine = { config, pkgs, ... }: { }; + machine = { config, pkgs, ... }: { + imports = [ ../modules/profiles/minimal.nix ]; + }; testScript = ''