update lucy

This commit is contained in:
Vivian 2023-12-23 20:42:24 +01:00
parent d4c357ba6a
commit 3a8cb9ebd7

View file

@ -38,14 +38,8 @@ in
# Additional packages # Additional packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffuf
gcc
go
jq jq
nuclei-latest jre_minimal
rustup
trivy
wapiti
]; ];
boot.loader = { boot.loader = {
@ -54,22 +48,10 @@ in
efi.efiSysMountPoint = "/boot"; efi.efiSysMountPoint = "/boot";
}; };
virtualisation.docker.enable = true;
services.mosquitto = {
enable = true;
listeners = [{
acl = [ "pattern readwrite #" ];
omitPasswordAuth = true;
settings.allow_anonymous = true;
}];
};
networking.firewall = { networking.firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 1883 ]; allowedTCPPorts = [ 25565 ];
}; };
users.extraUsers.laura.extraGroups = [ "wheel" "docker" ]; users.extraUsers.laura.extraGroups = [ "wheel" ];
users.extraUsers.vivian.extraGroups = [ "docker" ];
} }