Skip to content

Commit d1d99eb

Browse files
committed
treewide: mark things that have to be done
1 parent 554629a commit d1d99eb

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

Diff for: acer/aspire/4810t/default.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
"vga=0x317"
1515
"video=vesafb:ywrap"
1616

17-
# Important, to disable Kernel Mode Setting for the graphics card
18-
# This will allow backlight regulation
17+
# Important, disable KMS to fix backlight regulation:
1918
"nomodeset"
2019
];
2120
};
2221

22+
# TODO: reverse compat
2323
hardware.opengl.driSupport = false;
2424

25+
# TODO: reverse compat
2526
services.xserver = {
2627
defaultDepth = lib.mkDefault 24;
2728
};

Diff for: apple/macbook-pro/10-1/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
boot.loader.systemd-boot.enable = true;
1111
boot.loader.efi.canTouchEfiVariables = true;
1212

13-
# TODO: drop
13+
# TODO: reverse compat
1414
hardware.opengl.driSupport32Bit = true;
1515

1616
services.xserver = {

Diff for: audio-gd/compass2.nix

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
{ config, pkgs, ... }:
2-
31
{
42
boot = {
5-
extraModprobeConfig = ''
3+
extraModprobeConfig = lib.mkDefault ''
64
options snd slots=snd_usb_audio,snd-hda-intel
75
'';
86
};

Diff for: lenovo/thinkpad/t410/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
];
99

1010
boot = {
11+
# TODO: this configuration seems to be very aggressive.
12+
# Ask @peti if it's stable or not.
1113
kernelParams = [
1214
"drm.debug=0"
1315
"drm.vblankoffdelay=1"

Diff for: lenovo/thinkpad/t440p/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
extraModprobeConfig = lib.mkDefault ''
1111
options bbswitch use_acpi_to_detect_card_state=1
1212
'';
13+
# TODO: probably enable tcsd? Is this line necessary?
1314
kernelModules = [ "tpm-rng" ];
1415
};
1516
}

Diff for: lenovo/thinkpad/x220/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
imports = [
55
../.
66
../../../common/cpu/intel
7-
../../../common/pc/laptop/hdd
7+
../../../common/pc/laptop/hdd # TODO: reverse compat
88
../tp-smapi.nix
99
];
1010
}

Diff for: microsoft/surface-pro/3/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# to use the type cover in the initrd
55
boot.kernelModules = [ "hid-microsoft" ];
66

7+
# TODO: reverse compat
78
networking.wireless.enable = lib.mkDefault true;
89
}

Diff for: samsung/np900x3c/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# TODO: use ../../common/pc/laptop
2+
13
{ lib, ... }:
24

35
{

0 commit comments

Comments
 (0)