about summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome/glib-networking.nix
blob: 905901f4708415676cf4490150a44073991c876e (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
34
35
# GLib Networking

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

{

  meta = {
    maintainers = lib.teams.gnome.members;
  };

  ###### interface

  options = {

    services.gnome.glib-networking = {

      enable = lib.mkEnableOption "network extensions for GLib";

    };

  };

  ###### implementation

  config = lib.mkIf config.services.gnome.glib-networking.enable {

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

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

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

  };

}