From 3bdd96bc6d5e0f610e55333e6e5d1605dfe5cec5 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