nixos/kde5: disable setuid wrapper for kdeinit
We need to pass certain environment variables through the wrapper, but I don't know how to do that yet. The setuid-root feature serves only to hide kdeinit from the OOM killer, so this is not critical.
This commit is contained in:
parent
949277ed0a
commit
888c66f97d
@ -54,12 +54,16 @@ in
|
|||||||
owner = "root";
|
owner = "root";
|
||||||
setuid = true;
|
setuid = true;
|
||||||
}
|
}
|
||||||
|
# ttuegel: Disabled until I can figure out how to propagate the
|
||||||
|
# necessary environment variables.
|
||||||
|
/*
|
||||||
{
|
{
|
||||||
program = "start_kdeinit_wrapper";
|
program = "start_kdeinit_wrapper";
|
||||||
source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper";
|
source = "${kde5.kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper";
|
||||||
owner = "root";
|
owner = "root";
|
||||||
setuid = true;
|
setuid = true;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
|
Loading…
Reference in New Issue
Block a user