From 3a8cb9ebd7faade91609038bb554e778b7ec92be Mon Sep 17 00:00:00 2001 From: 0x76 Date: Sat, 23 Dec 2023 20:42:24 +0100 Subject: [PATCH] update lucy --- nixos/hosts/hades/lucy/configuration.nix | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/nixos/hosts/hades/lucy/configuration.nix b/nixos/hosts/hades/lucy/configuration.nix index f73a5df8..01ed7b70 100644 --- a/nixos/hosts/hades/lucy/configuration.nix +++ b/nixos/hosts/hades/lucy/configuration.nix @@ -38,14 +38,8 @@ in # Additional packages environment.systemPackages = with pkgs; [ - ffuf - gcc - go jq - nuclei-latest - rustup - trivy - wapiti + jre_minimal ]; boot.loader = { @@ -54,22 +48,10 @@ in efi.efiSysMountPoint = "/boot"; }; - virtualisation.docker.enable = true; - - services.mosquitto = { - enable = true; - listeners = [{ - acl = [ "pattern readwrite #" ]; - omitPasswordAuth = true; - settings.allow_anonymous = true; - }]; - }; - networking.firewall = { enable = true; - allowedTCPPorts = [ 1883 ]; + allowedTCPPorts = [ 25565 ]; }; - users.extraUsers.laura.extraGroups = [ "wheel" "docker" ]; - users.extraUsers.vivian.extraGroups = [ "docker" ]; + users.extraUsers.laura.extraGroups = [ "wheel" ]; }