-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnu-dell.nix
45 lines (35 loc) · 1.01 KB
/
nu-dell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## dell hardware / low-level stuff
{ config, pkgs, ... }:
{
hardware.bluetooth.enable = true;
sound.enable = true;
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
};
environment.systemPackages = [ pkgs.pavucontrol ];
# Use the systemd-boot EFI bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# boot.loader.timeout = 5;
# configure multitouch options
services.xserver.libinput = {
enable = true;
touchpad = {
#accelSpeed = "0.2";
naturalScrolling = true;
};
#multitouch.enable = true;
#multitouch.invertScroll = true;
#multitouch.ignorePalm = true;
#multitouch.additionalOptions = ''
#Option "FingerHigh" "20"
#'';
};
# services.xserver.config = " # adding another comment";
networking.interfaces.wlp59s0.useDHCP = true;
# auto-mount flash drives
services.udisks2.enable = true;
services.printing.enable = true;
services.printing.drivers = [ pkgs.brlaser ];
}