summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome3/gnome-user-share.nix
blob: e5c94cff7c84ec25dfb48e91e341db3d000eecaf (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
36
37
38
39
40
41
42
43
44
45
# GNOME User Share daemon.

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

with lib;

let
  gnome3 = config.environment.gnome3.packageSet;
in
{

  ###### interface

  options = {

    services.gnome3.gnome-user-share = {

      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Whether to enable GNOME User Share, a service that exports the
          contents of the Public folder in your home directory on the local network.
        '';
      };

    };

  };


  ###### implementation

  config = mkIf config.services.gnome3.gnome-user-share.enable {

    environment.systemPackages = [ gnome3.gnome-user-share ];

    services.xserver.displayManager.sessionCommands = with gnome3; ''
      # Don't let gnome-control-center depend upon gnome-user-share
      export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}${gnome-user-share}/share/gsettings-schemas/${gnome-user-share.name}
    '';

  };

}