Compare commits

..

3 Commits

Author SHA1 Message Date
3ccc8678ce ajout outil wifi pour profil laptop 2016-10-10 22:11:44 +02:00
Yves Dubromelle
215005d927 installation des outils réseaux sur toutes les machines 2016-10-09 18:43:01 +02:00
Yves Dubromelle
9fb124116d phenom: permet de modifier les photo + profil laptop (pour carte wifi) 2016-10-06 21:47:44 +02:00
3 changed files with 7 additions and 3 deletions

View File

@@ -252,6 +252,8 @@ in
r6d.config-generator = { r6d.config-generator = {
nix-serve-server = true; nix-serve-server = true;
laptop = true;
edition-photo = true;
}; };
}) })
(mkIf comp.isRollo { (mkIf comp.isRollo {

View File

@@ -7,7 +7,8 @@ let
profiles = config.r6d.profiles; profiles = config.r6d.profiles;
in in
mkIf profiles.isDesktop { mkIf true {
#mkIf profiles.isDesktop {
# Paquets # Paquets
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@@ -19,7 +20,7 @@ mkIf profiles.isDesktop {
## Diagnostic ## Diagnostic
arp-scan arp-scan
wireshark #wireshark
whois whois
]; ];

View File

@@ -21,6 +21,7 @@ mkIf cfg.laptop {
# Paquets # Paquets
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
networkmanagerapplet networkmanagerapplet # gestionnaire réseau graphique + console (nm-applet + nmtui)
wirelesstools # fournis iwconfig
]; ];
} }