diff options
author | Alan Pearce | 2018-09-30 19:19:08 +0200 |
---|---|---|
committer | Alan Pearce | 2018-09-30 19:19:08 +0200 |
commit | c74a9e9fefee59a23759de6791b19771316691fc (patch) | |
tree | 43c60762f28a45175fe2fbb16b4cb6857a0e52bd /modules/machines | |
parent | 5f4723df19ab14b917b98677aa74d20aaf5a6557 (diff) | |
parent | a114b12027fbd82484833a7a2ded35273de39e3b (diff) | |
download | nixos-configuration-c74a9e9fefee59a23759de6791b19771316691fc.tar.lz nixos-configuration-c74a9e9fefee59a23759de6791b19771316691fc.tar.zst nixos-configuration-c74a9e9fefee59a23759de6791b19771316691fc.zip |
Merge branch 'master' of https://git.alanpearce.eu/nixos-configuration
Diffstat (limited to 'modules/machines')
-rw-r--r-- | modules/machines/t470s.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/machines/t470s.nix b/modules/machines/t470s.nix index e6fb8cb..304bfd5 100644 --- a/modules/machines/t470s.nix +++ b/modules/machines/t470s.nix @@ -5,6 +5,8 @@ firmwareLinuxNonfree ]; + boot.kernelPackages = pkgs.linuxPackages_4_17; + systemd.services.ModemManager.enable = true; hardware.pulseaudio.extraConfig = '' @@ -12,11 +14,11 @@ ''; # Try a different acceleration method; maybe it helps with screen corruption - services.xserver.deviceSection = '' - Option "AccelMethod" "sna" - Option "TearFree" "true" - Option "TripleBuffer" "false" - ''; + # services.xserver.deviceSection = '' + # Option "AccelMethod" "sna" + # Option "TearFree" "true" + # Option "TripleBuffer" "false" + # ''; services.xserver.monitorSection = '' DisplaySize 310 176 |