fix: remove proc protection from nysh

This commit is contained in:
Nydragon 2024-11-01 17:33:13 +01:00
parent 8a12640d36
commit c75cc0752a
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 1 additions and 4 deletions

View file

@ -3,7 +3,6 @@
./firefox ./firefox
./thunderbird ./thunderbird
./vscode ./vscode
./lollypop
./fuzzel.nix ./fuzzel.nix
./gammastep.nix # default because I need to protect my peepers ./gammastep.nix # default because I need to protect my peepers
./swww.nix ./swww.nix

View file

@ -26,5 +26,4 @@
}; };
}; };
}; };
} }

View file

@ -85,10 +85,10 @@ in
"video/*" = cfg.ebook.default; "video/*" = cfg.ebook.default;
"image/*" = cfg.image.default; "image/*" = cfg.image.default;
"audio/*" = cfg.audio.default; "audio/*" = cfg.audio.default;
"audio/mpeg" = cfg.audio.default;
# Ebooks sadly don't have a singular major type. # Ebooks sadly don't have a singular major type.
"application/epub+zip" = cfg.ebook.default; "application/epub+zip" = cfg.ebook.default;
}; };
}; };
}; };
} }

View file

@ -36,7 +36,6 @@ in
PrivateMounts = true; PrivateMounts = true;
ProtectHostname = true; ProtectHostname = true;
ProtectKernelTunables = true; ProtectKernelTunables = true;
ProtectProc = true;
PrivateTmp = true; PrivateTmp = true;
IPAddressDeny = "any"; IPAddressDeny = "any";
}; };