nixpkgs/nixos/modules/services/desktops/gvfs.nix

60 lines
975 B
Nix
Raw Normal View History

2019-08-19 22:53:43 +00:00
# GVfs
{ config, lib, pkgs, ... }:
with lib;
2019-08-19 22:56:41 +00:00
let
cfg = config.services.gvfs;
in
2019-08-19 22:53:43 +00:00
{
# Added 2019-08-19
imports = [
(mkRenamedOptionModule
[ "services" "gnome3" "gvfs" "enable" ]
[ "services" "gvfs" "enable" ])
];
###### interface
options = {
services.gvfs = {
enable = mkEnableOption "GVfs, a userspace virtual filesystem";
2019-08-19 22:56:41 +00:00
# gvfs can be built with multiple configurations
package = mkOption {
type = types.package;
default = pkgs.gnome3.gvfs;
description = "Which GVfs package to use.";
};
2019-08-19 22:53:43 +00:00
};
};
###### implementation
2019-08-19 22:56:41 +00:00
config = mkIf cfg.enable {
2019-08-19 22:53:43 +00:00
2019-08-19 22:56:41 +00:00
environment.systemPackages = [ cfg.package ];
2019-08-19 22:53:43 +00:00
2019-08-19 22:56:41 +00:00
services.dbus.packages = [ cfg.package ];
2019-08-19 22:53:43 +00:00
2019-08-19 22:56:41 +00:00
systemd.packages = [ cfg.package ];
2019-08-19 22:53:43 +00:00
services.udev.packages = [ pkgs.libmtp.bin ];
2019-08-19 22:58:13 +00:00
# Needed for unwrapped applications
environment.variables.GIO_EXTRA_MODULES = [ "${cfg.package}/lib/gio/modules" ];
2019-08-19 22:53:43 +00:00
};
}