1
0
Fork 0
This commit is contained in:
Sandro - 2022-12-26 02:54:15 +01:00
parent ac8355120b
commit 4624b8945f
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 7 deletions

View File

@ -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";
}