You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
465 B
Nix
23 lines
465 B
Nix
9 years ago
|
{ config, libs, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Paquets spécifiques pour un ordinateur portable
|
||
|
|
||
|
networking = {
|
||
|
wireless.enable = true; # Enables wireless support via wpa_supplicant
|
||
|
networkmanager.enable = true; # Activation d'un gestionnaire de réseau
|
||
|
};
|
||
|
|
||
|
hardware.bluetooth.enable = true;.
|
||
|
|
||
|
environment.systemPackages = with pkgs;[
|
||
|
networkmanagerapplet
|
||
|
];
|
||
|
|
||
|
services.xserver.synaptics = {
|
||
|
enable = true;
|
||
|
twoFingerScroll = true;
|
||
|
};
|
||
|
|
||
|
}
|