mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
31 lines
606 B
Nix
31 lines
606 B
Nix
|
{ pkgs, config, ... }:
|
||
|
|
||
|
with pkgs.lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.services.xserver.desktopManager.xbmc;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
services.xserver.desktopManager.xbmc = {
|
||
|
enable = mkOption {
|
||
|
default = false;
|
||
|
example = true;
|
||
|
description = "Enable the xbmc multimedia center.";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.xserver.desktopManager.session = [{
|
||
|
name = "xbmc";
|
||
|
start = ''
|
||
|
${pkgs.xbmc}/bin/xbmc --lircdev /var/run/lirc/lircd --standalone &
|
||
|
waitPID=$!
|
||
|
'';
|
||
|
}];
|
||
|
|
||
|
environment.systemPackages = [ pkgs.xbmc ];
|
||
|
};
|
||
|
}
|