summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome3/glib-networking.nix
blob: 186668d7d38503152cbf5482e845b03cf675242c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# GLib Networking

{ config, pkgs, lib, ... }:

with lib;

{

  ###### interface

  options = {

    services.gnome3.glib-networking = {

      enable = mkEnableOption "network extensions for GLib";

    };

  };

  ###### implementation

  config = mkIf config.services.gnome3.glib-networking.enable {

    services.dbus.packages = [ pkgs.gnome3.glib-networking ];

    systemd.packages = [ pkgs.gnome3.glib-networking ];

    environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gnome3.glib-networking.out}/lib/gio/modules" ];

  };

}