9 lines
233 B
Nix
9 lines
233 B
Nix
{ pkgs, ... }:
|
|
{
|
|
sane.programs.gdbus = {
|
|
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.glib "gdbus";
|
|
|
|
sandbox.whitelistDbus.user = true; #< TODO: reduce #< XXX: maybe future users will also want system access
|
|
};
|
|
}
|