From dd30ebef45b63b4c8bb8b586f750ff877f60f565 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 4 Mar 2017 19:49:39 +0100 Subject: [PATCH] l 2: add livestream.nix --- lass/2configs/baseX.nix | 2 +- lass/2configs/livestream.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 lass/2configs/livestream.nix diff --git a/lass/2configs/baseX.nix b/lass/2configs/baseX.nix index a8d9b4ff4..275b93f26 100644 --- a/lass/2configs/baseX.nix +++ b/lass/2configs/baseX.nix @@ -9,6 +9,7 @@ in { ./screenlock.nix ./copyq.nix ./xresources.nix + ./livestream.nix { hardware.pulseaudio = { enable = true; @@ -42,7 +43,6 @@ in { }; environment.systemPackages = with pkgs; [ - acpi dic dmenu diff --git a/lass/2configs/livestream.nix b/lass/2configs/livestream.nix new file mode 100644 index 000000000..25d54e26d --- /dev/null +++ b/lass/2configs/livestream.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: +with import ; + +let + + stream = pkgs.writeDashBin "stream" '' + ${pkgs.python35Packages.livestreamer}/bin/livestreamer --http-header Client-ID=jzkbprff40iqj646a697cyrvl0zt2m6 -p mpv "$@" + ''; + +in { + environment.systemPackages = [ stream ]; +}