468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
# rygel service.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
meta = {
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
|
|
imports = [
|
|
# Added 2021-05-07
|
|
(mkRenamedOptionModule
|
|
[ "services" "gnome3" "rygel" "enable" ]
|
|
[ "services" "gnome" "rygel" "enable" ]
|
|
)
|
|
];
|
|
|
|
###### interface
|
|
options = {
|
|
services.gnome.rygel = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = ''
|
|
Whether to enable Rygel UPnP Mediaserver.
|
|
|
|
You will need to also allow UPnP connections in firewall, see the following <link xlink:href="https://github.com/NixOS/nixpkgs/pull/45045#issuecomment-416030795">comment</link>.
|
|
'';
|
|
type = types.bool;
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf config.services.gnome.rygel.enable {
|
|
environment.systemPackages = [ pkgs.gnome.rygel ];
|
|
|
|
services.dbus.packages = [ pkgs.gnome.rygel ];
|
|
|
|
systemd.packages = [ pkgs.gnome.rygel ];
|
|
|
|
environment.etc."rygel.conf".source = "${pkgs.gnome.rygel}/etc/rygel.conf";
|
|
};
|
|
}
|