Merge pull request #188 from symphorien/precision5530
add dell precision 5530
This commit is contained in:
commit
f2b06f530e
|
@ -77,6 +77,7 @@ See code for all available configurations.
|
|||
| Asus TUF FX504GD | `<nixos-hardware/asus/fx504gd>` |
|
||||
| BeagleBoard PocketBeagle | `<nixos-hardware/beagleboard/pocketbeagle>` |
|
||||
| Dell Latitude 3480 | `<nixos-hardware/dell/latitude/3480>` |
|
||||
| Dell Precision 5530 | `<nixos-hardware/dell/precision/5530>` |
|
||||
| [Dell XPS E7240][] | `<nixos-hardware/dell/e7240>` |
|
||||
| [Dell XPS 13 7390][] | `<nixos-hardware/dell/xps/13-7390>` |
|
||||
| [Dell XPS 13 9343][] | `<nixos-hardware/dell/xps/13-9343>` |
|
||||
|
|
22
dell/precision/5530/default.nix
Normal file
22
dell/precision/5530/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../../common/cpu/intel
|
||||
../../../common/pc/laptop
|
||||
../../../common/pc/laptop/ssd
|
||||
];
|
||||
|
||||
# https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803179/comments/149
|
||||
# fix lspci hanging with nouveau
|
||||
boot.kernelParams = [
|
||||
"acpi_rev_override=1"
|
||||
"acpi_osi=Linux"
|
||||
"nouveau.modeset=0"
|
||||
"pcie_aspm=force"
|
||||
"drm.vblankoffdelay=1"
|
||||
"scsi_mod.use_blk_mq=1"
|
||||
"nouveau.runpm=0"
|
||||
"mem_sleep_default=deep"
|
||||
];
|
||||
}
|
|
@ -12,6 +12,7 @@
|
|||
apple-macbook-air-12-1 = import ./apple/macbook-pro/12-1;
|
||||
beagleboard-pocketbeagle = import ./beagleboard/pocketbeagle;
|
||||
dell-latitude-3480 = import ./dell/latitude/3480;
|
||||
dell-precision-5530 = import ./dell/precision/5530;
|
||||
dell-e7240 = import ./dell/e7240;
|
||||
dell-xps-13-7390 = import ./dell/xps/13-7390;
|
||||
dell-xps-13-9360 = import ./dell/xps/13-9360;
|
||||
|
|
Loading…
Reference in a new issue