build clementine without spotify from unstable

This commit is contained in:
Trolli Schmittlauch 2018-09-26 14:23:42 +02:00
parent e1546db239
commit 566cc6cc9e
2 changed files with 14 additions and 1 deletions

5
config.nix Normal file
View file

@ -0,0 +1,5 @@
{
config.clementine.spotify = false;
}

View file

@ -3,6 +3,7 @@
with pkgs; with pkgs;
let let
unstable = import <nixos-unstable> {};
mybrowser = firefox; mybrowser = firefox;
desktopApps = [ desktopApps = [
@ -36,7 +37,7 @@ let
mpv mpv
vlc vlc
amarok-kf5 amarok-kf5
#clementine unstable.clementine
youtube-dl youtube-dl
sonic-pi sonic-pi
]; ];
@ -60,6 +61,10 @@ let
pandoc pandoc
]; ];
nixHelpers = [
nox
];
kdeTools = with kdeApplications; [ kdeTools = with kdeApplications; [
okular okular
redshift-plasma-applet redshift-plasma-applet
@ -78,6 +83,8 @@ let
ark ark
kwalletmanager kwalletmanager
#ktouch #ktouch
konversation
okteta
] ]
++ (with kdeFrameworks; [ ++ (with kdeFrameworks; [
networkmanager-qt networkmanager-qt
@ -149,6 +156,7 @@ in
++ devTools ++ devTools
++ kdeTools ++ kdeTools
++ fonts ++ fonts
++ nixHelpers
); );
programs.home-manager.enable = true; programs.home-manager.enable = true;