Add Dell E7240 Profile
(Current XPS 15 works well)
This commit is contained in:
parent
0435629061
commit
26bbc980b9
|
@ -24,6 +24,8 @@ imports = [
|
||||||
|
|
||||||
See code for all available configurations.
|
See code for all available configurations.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
| Model | Path |
|
| Model | Path |
|
||||||
| --------------------------------- | -------------------------------------------- |
|
| --------------------------------- | -------------------------------------------- |
|
||||||
| [Acer Aspire 4810T][] | `<nixos-hardware/acer/aspire/4810t>` |
|
| [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 10,1][] | `<nixos-hardware/apple/macbook-pro/10-1>` |
|
||||||
| Apple MacBook Pro 12,1 | `<nixos-hardware/apple/macbook-pro/12-1>` |
|
| Apple MacBook Pro 12,1 | `<nixos-hardware/apple/macbook-pro/12-1>` |
|
||||||
| BeagleBoard PocketBeagle | `<nixos-hardware/beagleboard/pocketbeagle>` |
|
| 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 9360][] | `<nixos-hardware/dell/xps/13-9360>` |
|
||||||
| [Dell XPS 13 9370][] | `<nixos-hardware/dell/xps/13-9370>` |
|
| [Dell XPS 13 9370][] | `<nixos-hardware/dell/xps/13-9370>` |
|
||||||
| [Dell XPS 13 9380][] | `<nixos-hardware/dell/xps/13-9380>` |
|
| [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
|
[Acer Aspire 4810T]: acer/aspire/4810t
|
||||||
[Apple MacBook Pro 10,1]: apple/macbook-pro/10-1
|
[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 9360]: dell/xps/13-9360
|
||||||
[Dell XPS 13 9370]: dell/xps/13-9370
|
[Dell XPS 13 9370]: dell/xps/13-9370
|
||||||
[Dell XPS 13 9380]: dell/xps/13-9380
|
[Dell XPS 13 9380]: dell/xps/13-9380
|
||||||
|
|
8
dell/e7240/README.md
Normal file
8
dell/e7240/README.md
Normal 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
8
dell/e7240/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../../common/cpu/intel
|
||||||
|
../../common/pc/laptop
|
||||||
|
];
|
||||||
|
}
|
|
@ -31,6 +31,7 @@ in
|
||||||
apple-macbook-pro-11-5 = buildProfile ./apple/macbook-pro/11-5;
|
apple-macbook-pro-11-5 = buildProfile ./apple/macbook-pro/11-5;
|
||||||
apple-macbook-pro-12-1 = buildProfile ./apple/macbook-pro/12-1;
|
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-9380 = buildProfile ./dell/xps/13-9380;
|
||||||
dell-xps-13-9370 = buildProfile ./dell/xps/13-9370;
|
dell-xps-13-9370 = buildProfile ./dell/xps/13-9370;
|
||||||
dell-xps-15-9550 = buildProfile ./dell/xps/15-9550;
|
dell-xps-15-9550 = buildProfile ./dell/xps/15-9550;
|
||||||
|
|
Loading…
Reference in a new issue