From 4624b8945fd51f0cf677cdd72ca8ef3459ed4be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 26 Dec 2022 02:54:15 +0100 Subject: [PATCH] Cleanup --- hosts/kibana/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/hosts/kibana/default.nix b/hosts/kibana/default.nix index 12315ab9..251e1434 100644 --- a/hosts/kibana/default.nix +++ b/hosts/kibana/default.nix @@ -1,4 +1,4 @@ -{ zentralwerk, config, pkgs, lib, ... }: +{ config, pkgs, ... }: { deployment = { @@ -8,7 +8,6 @@ hypervisor = "qemu"; }; networking.hostName = "kibana"; - networking.firewall.allowedTCPPorts = [ 80 443 ]; nixpkgs.config.allowUnfree = true; services.elasticsearch = { @@ -51,9 +50,5 @@ }; }; - # This value determines the NixOS release with which your system is to be - # compatible, in order to avoid breaking some software such as database - # servers. You should change this only after NixOS release notes say you - # should. - system.stateVersion = "22.11"; # Did you read the comment? + system.stateVersion = "22.11"; }