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.
25 lines
544 B
Nix
25 lines
544 B
Nix
{ config, libs, pkgs, ... }:
|
|
|
|
{
|
|
# Paquets spécifiques pour un ordinateur portable
|
|
|
|
config = mkIf config.r6d.config-generator.laptop {
|
|
|
|
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;
|
|
};
|
|
}
|
|
}
|