nixpkgs/nixos/modules/services/desktops/gnome3/gvfs.nix
2016-10-15 20:32:12 +02:00

47 lines
716 B
Nix

# gvfs backends
{ config, lib, pkgs, ... }:
with lib;
let
gnome3 = config.environment.gnome3.packageSet;
in
{
###### interface
options = {
services.gnome3.gvfs = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable gvfs backends, userspace virtual filesystem used
by GNOME components via D-Bus.
'';
};
};
};
###### implementation
config = mkIf config.services.gnome3.gvfs.enable {
environment.systemPackages = [ gnome3.gvfs ];
services.dbus.packages = [ gnome3.gvfs ];
systemd.packages = [ gnome3.gvfs ];
services.udev.packages = [ pkgs.libmtp.bin ];
};
}