From d042ee20b849a6878422af845f087725d217079d Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Sat, 7 Nov 2020 19:12:55 +0100 Subject: [PATCH] fixup lighttpd test --- tests/default.nix | 1 + tests/lighttpd.nix | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/default.nix b/tests/default.nix index f9c7b69..afe59d7 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -11,6 +11,7 @@ let ./bash.nix ./execve.nix ./hello.nix + ./lighttpd.nix ./log.nix ./networking.nix ./posix.nix diff --git a/tests/lighttpd.nix b/tests/lighttpd.nix index 2904cad..66fc66a 100644 --- a/tests/lighttpd.nix +++ b/tests/lighttpd.nix @@ -2,9 +2,7 @@ name = "lighttpd"; machine = { pkgs, ... }: { imports = [ ../nixos-modules/systemd.nix ]; - services.lighttpd = { - enable = true; - }; + services.lighttpd.enable = true; systemd.services.lighttpd.genode.enable = true; }; }