nixos/grocy: don't set X-XSS-Protection anymore (#439344)

Changed files
+6 -4
nixos
modules
services
web-apps
tests
pkgs
by-name
gr
grocy
+1 -2
nixos/modules/services/web-apps/grocy.nix
···
locations."~ \\.(js|css|ttf|woff2?|png|jpe?g|svg)$".extraConfig = ''
add_header Cache-Control "public, max-age=15778463";
add_header X-Content-Type-Options nosniff;
-
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
···
};
meta = {
-
maintainers = with maintainers; [ ];
doc = ./grocy.md;
};
}
···
locations."~ \\.(js|css|ttf|woff2?|png|jpe?g|svg)$".extraConfig = ''
add_header Cache-Control "public, max-age=15778463";
add_header X-Content-Type-Options nosniff;
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
···
};
meta = {
+
maintainers = with maintainers; [ diogotcorreia ];
doc = ./grocy.md;
};
}
+4 -1
nixos/tests/grocy.nix
···
{
name = "grocy";
meta = with pkgs.lib.maintainers; {
-
maintainers = [ ma27 ];
};
nodes.machine =
···
{
name = "grocy";
meta = with pkgs.lib.maintainers; {
+
maintainers = [
+
diogotcorreia
+
ma27
+
];
};
nodes.machine =
+1 -1
pkgs/by-name/gr/grocy/package.nix
···
meta = with lib; {
license = licenses.mit;
-
maintainers = with maintainers; [ ];
description = "ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home";
homepage = "https://grocy.info/";
};
···
meta = with lib; {
license = licenses.mit;
+
maintainers = with maintainers; [ diogotcorreia ];
description = "ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home";
homepage = "https://grocy.info/";
};