summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix36
1 files changed, 18 insertions, 18 deletions
diff --git a/hel.nix b/hel.nix
index d5b5696c..a2fbd5ab 100644
--- a/hel.nix
+++ b/hel.nix
@@ -195,8 +195,6 @@
195 libinput.enable = true; 195 libinput.enable = true;
196 196
197 dpi = 210; 197 dpi = 210;
198
199 dbus.packages = with pkgs; [ gnome.GConf ];
200 }; 198 };
201 199
202 ntp.enable = false; 200 ntp.enable = false;
@@ -329,22 +327,24 @@
329 327
330 dbus = { 328 dbus = {
331 enable = true; 329 enable = true;
332 packages = [ (pkgs.writeTextFile { 330 packages = with pkgs;
333 name = "eavesdrop.conf"; 331 [ (writeTextFile {
334 text = '' 332 name = "eavesdrop.conf";
335 <!DOCTYPE busconfig PUBLIC 333 text = ''
336 "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN" 334 <!DOCTYPE busconfig PUBLIC
337 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> 335 "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
338 <busconfig> 336 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
339 <policy user="root"> 337 <busconfig>
340 <allow eavesdrop="true"/> 338 <policy user="root">
341 <allow eavesdrop="true" send_destination="*"/> 339 <allow eavesdrop="true"/>
342 </policy> 340 <allow eavesdrop="true" send_destination="*"/>
343 </busconfig> 341 </policy>
344 ''; 342 </busconfig>
345 destination = "/etc/dbus-1/system.d/eavesdrop.conf"; 343 '';
346 }) 344 destination = "/etc/dbus-1/system.d/eavesdrop.conf";
347 ]; 345 })
346 gnome.GConf
347 ];
348 }; 348 };
349 }; 349 };
350 350