From 2ecdc7624af1467ee8851318c6a34394d4e699b8 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Fri, 2 Dec 2022 23:51:33 +0700 Subject: [PATCH] hosts/sugarcane: readd nginx --- hosts/sugarcane/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/sugarcane/default.nix b/hosts/sugarcane/default.nix index fb2a276..beb0db9 100644 --- a/hosts/sugarcane/default.nix +++ b/hosts/sugarcane/default.nix @@ -7,7 +7,7 @@ passwd.file = ../../secrets/passwd.age; wg_sugarcane.file = ../../secrets/wg_sugarcane.age; }; - imports = with modules.system; [ + imports = (with modules.system; [ (modulesPath + "/profiles/qemu-guest.nix") inputs.home-manager-raccoon.nixosModule @@ -24,5 +24,8 @@ ./packages.nix ../../users/hana - ]; + ]) ++ + (with modules.services; [ + nginx + ]); }