3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/nixos/modules/services/x11/desktop-managers/kodi.nix

32 lines
609 B
Nix
Raw Normal View History

2015-01-19 21:14:36 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.xserver.desktopManager.kodi;
in
{
options = {
services.xserver.desktopManager.kodi = {
enable = mkOption {
type = types.bool;
2015-01-19 21:14:36 +00:00
default = false;
description = "Enable the kodi multimedia center.";
};
};
};
config = mkIf cfg.enable {
services.xserver.desktopManager.session = [{
name = "kodi";
start = ''
LIRC_SOCKET_PATH=/run/lirc/lircd ${pkgs.kodi}/bin/kodi --standalone &
2015-01-19 21:14:36 +00:00
waitPID=$!
'';
}];
environment.systemPackages = [ pkgs.kodi ];
};
}