Add Dell E7240 Profile

(Current XPS 15 works well)
This commit is contained in:
Ashley Gillman 2018-07-15 22:28:25 +01:00 committed by Jörg Thalheim
parent 0435629061
commit 26bbc980b9
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4
4 changed files with 60 additions and 39 deletions

View File

@ -24,6 +24,8 @@ imports = [
See code for all available configurations.
| Model | Path |
| --------------------------------- | -------------------------------------------- |
| [Acer Aspire 4810T][] | `<nixos-hardware/acer/aspire/4810t>` |
@ -33,6 +35,7 @@ See code for all available configurations.
| [Apple MacBook Pro 10,1][] | `<nixos-hardware/apple/macbook-pro/10-1>` |
| Apple MacBook Pro 12,1 | `<nixos-hardware/apple/macbook-pro/12-1>` |
| BeagleBoard PocketBeagle | `<nixos-hardware/beagleboard/pocketbeagle>` |
| [Dell XPS E7240][] | `<nixos-hardware/dell/e7240>` |
| [Dell XPS 13 9360][] | `<nixos-hardware/dell/xps/13-9360>` |
| [Dell XPS 13 9370][] | `<nixos-hardware/dell/xps/13-9370>` |
| [Dell XPS 13 9380][] | `<nixos-hardware/dell/xps/13-9380>` |
@ -66,6 +69,7 @@ See code for all available configurations.
[Acer Aspire 4810T]: acer/aspire/4810t
[Apple MacBook Pro 10,1]: apple/macbook-pro/10-1
[Dell XPS E7240][]: dell/e7240
[Dell XPS 13 9360]: dell/xps/13-9360
[Dell XPS 13 9370]: dell/xps/13-9370
[Dell XPS 13 9380]: dell/xps/13-9380

8
dell/e7240/README.md Normal file
View File

@ -0,0 +1,8 @@
On some kernel versions user ashgillman has experiences suspend issues
(see https://bugzilla.redhat.com/show_bug.cgi?id=1597481).
Try:
```nix
boot.kernelPackages = pkgs.linuxPackages_4_14;
```

8
dell/e7240/default.nix Normal file
View File

@ -0,0 +1,8 @@
{ lib, pkgs, ... }:
{
imports = [
../../common/cpu/intel
../../common/pc/laptop
];
}

View File

@ -31,6 +31,7 @@ in
apple-macbook-pro-11-5 = buildProfile ./apple/macbook-pro/11-5;
apple-macbook-pro-12-1 = buildProfile ./apple/macbook-pro/12-1;
dell-e7240 = buildProfile ./dell/e7240;
dell-xps-13-9380 = buildProfile ./dell/xps/13-9380;
dell-xps-13-9370 = buildProfile ./dell/xps/13-9370;
dell-xps-15-9550 = buildProfile ./dell/xps/15-9550;