From e90fa2d10757c11f5b1054da64ca0a703c67d425 Mon Sep 17 00:00:00 2001 From: polsevev Date: Wed, 12 Feb 2025 22:00:29 +0100 Subject: [PATCH] add nginx config --- nixos/hephaestus/nginx.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nixos/hephaestus/nginx.nix diff --git a/nixos/hephaestus/nginx.nix b/nixos/hephaestus/nginx.nix new file mode 100644 index 0000000..fc54c5d --- /dev/null +++ b/nixos/hephaestus/nginx.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: +{ + environment.system.packages = with pkgs; [ + nginx + ]; +} \ No newline at end of file