Files
nix-files/hosts/common/programs/gdbus.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
};
}