1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 20:31:07 +01:00

fix(pmount): setuid

This commit is contained in:
2022-05-11 11:23:21 +02:00
parent 6c65a48ea8
commit 69332ec98d

View File

@@ -170,13 +170,15 @@ in {
{ {
security.wrappers = { security.wrappers = {
pmount = { pmount = {
setuid = true;
owner = "root"; owner = "root";
group = "users"; group = "root";
source = "${pkgs.pmount}/bin/pmount"; source = "${pkgs.pmount}/bin/pmount";
}; };
pumount = { pumount = {
setuid = true;
owner = "root"; owner = "root";
group = "users"; group = "root";
source = "${pkgs.pmount}/bin/pumount"; source = "${pkgs.pmount}/bin/pumount";
}; };
}; };