From 0e1a1b0107771b21972ba9b61eca3e4e57ef8f1d Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Wed, 1 Mar 2017 17:45:18 +0100 Subject: [PATCH] =?UTF-8?q?d=C3=A9placement=20config=20claws=20&=20mumble?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desktop/desktop.nix | 12 ------------ public/app-client-internet.nix | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/desktop/desktop.nix b/desktop/desktop.nix index a391e85..607e209 100644 --- a/desktop/desktop.nix +++ b/desktop/desktop.nix @@ -22,18 +22,6 @@ in xclip # manipulation du clipboard X depuis la console ]; - nixpkgs.config.packageOverrides = pkgs: { - clawsMail = pkgs.clawsMail.override { - enablePluginFancy = true; - enablePluginPdf = true; - enablePluginRavatar = true; - enablePluginSmime = true; - enablePluginVcalendar = true; - enableSpellcheck = true; - }; - mumble = pkgs.mumble.override { pulseSupport = true; }; - }; - # Paquets avec setuid root security.wrappers = { # pour le montage des media amovibles diff --git a/public/app-client-internet.nix b/public/app-client-internet.nix index 5bb0411..02b5e43 100644 --- a/public/app-client-internet.nix +++ b/public/app-client-internet.nix @@ -37,4 +37,16 @@ environment.systemPackages = with pkgs; [ transmission_gtk transmission_remote_gtk ]; + + nixpkgs.config.packageOverrides = pkgs: { + clawsMail = pkgs.clawsMail.override { + enablePluginFancy = true; + enablePluginPdf = true; + enablePluginRavatar = true; + enablePluginSmime = true; + enablePluginVcalendar = true; + enableSpellcheck = true; + }; + mumble = pkgs.mumble.override { pulseSupport = true; }; + }; }