nginx: remove deprecated X-XSS-Protection header
[sourcephile-nix.git] / hosts / mermet / security.nix
index 9600af0c0a9378a1d9a022291b02675c36bbe37c..5b8ca738c5bcb25c0d53877a08ad37b8af965f46 100644 (file)
@@ -1,10 +1,7 @@
-{ inputs, pkgs, lib, config, ... }:
+{ ... }:
 {
-security.gnupg.agent = {
-  keyring."89F52A879E0019A966503AFFDE72EEA84CDFA3A7" = {};
-};
-services.openssh.extraConfig = ''
-  # This is for removing remote gpg-agent's socket
-  StreamLocalBindUnlink yes
-'';
+  services.openssh.extraConfig = ''
+    # This is for removing remote gpg-agent's socket
+    StreamLocalBindUnlink yes
+  '';
 }