nix-files/hosts/common/programs/gdbus.nix

11 lines
249 B
Nix

{ pkgs, ... }:
{
sane.programs.gdbus = {
packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.glib "bin/gdbus";
sandbox.method = "bwrap";
sandbox.whitelistDbus = [ "user" ]; #< XXX: maybe future users will also want system access
};
}