1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00

fix(pmount): setuid root

This commit is contained in:
2021-12-13 11:58:00 +01:00
parent 1027a850fb
commit 7d00a2e896

View File

@@ -160,12 +160,12 @@ in {
{ {
security.wrappers = { security.wrappers = {
pmount = { pmount = {
owner = config.users.users.me.name; owner = "root";
group = "users"; group = "users";
source = "${pkgs.pmount}/bin/pmount"; source = "${pkgs.pmount}/bin/pmount";
}; };
pumount = { pumount = {
owner = config.users.users.me.name; owner = "root";
group = "users"; group = "users";
source = "${pkgs.pmount}/bin/pumount"; source = "${pkgs.pmount}/bin/pumount";
}; };