From b4c960d3d332801ff20355a360b050bf87a522a1 Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Mon, 15 Aug 2016 02:47:53 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20quand=20isDesktop=20=3D=20true,=20les=20?= =?UTF-8?q?autres=20paquets=20n'=C3=A9taient=20plus=20l=C3=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/app-adminsys.nix | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/public/app-adminsys.nix b/public/app-adminsys.nix index a60c7e5..5da69ac 100644 --- a/public/app-adminsys.nix +++ b/public/app-adminsys.nix @@ -39,15 +39,13 @@ mkIf true { ## Exploitation FS inotify-tools # être notifié lorsque le contenu d'un répertoire change rdfind # recherche de fichiers doublons pour remplacement par hard/soft link - ]; -} // mkIf profiles.isDesktop { - - # Paquets - environment.systemPackages = with pkgs; [ - ## Gestion de FS - gparted # Gestion graphique de partitions - - # - unetbootin # création de clefs USB bootables + (mkIf profiles.isDesktop + ## Gestion de FS + gparted # Gestion graphique de partitions + ) + (mkIf profiles.isDesktop + unetbootin # création de clefs USB bootables + ) + # ]; }