makeDBusConfig: don't allow substitutions
This is rebuilt virtually every time a NixOS module is enabled or disabled, so I don't think it makes sense to have it substituted. It gets in the way of trivial config changes when I would otherwise be able to rebuild my system entirely offline.
This commit is contained in:
parent
36cbb7c45e
commit
ad0d1ff6fd
|
@ -12,6 +12,7 @@ runCommand "dbus-1"
|
||||||
{
|
{
|
||||||
inherit serviceDirectories suidHelper;
|
inherit serviceDirectories suidHelper;
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
XML_CATALOG_FILES = writeText "dbus-catalog.xml" ''
|
XML_CATALOG_FILES = writeText "dbus-catalog.xml" ''
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE catalog PUBLIC
|
<!DOCTYPE catalog PUBLIC
|
||||||
|
|
Loading…
Reference in New Issue