Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f08177ef66b5
Choose a base ref
...
head repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ea09bae153f6
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Sep 27, 2019

  1. Add Dell E7240 Profile

    (Current XPS 15 works well)
    ashgillman authored and Mic92 committed Sep 27, 2019
    Copy the full SHA
    26bbc98 View commit details

Commits on Oct 9, 2019

  1. Copy the full SHA
    05e63ee View commit details
  2. Add Dell E7240 Profile (#122)

    Add Dell E7240 Profile
    Mic92 authored Oct 9, 2019
    Copy the full SHA
    ea09bae View commit details
Showing with 19 additions and 0 deletions.
  1. +2 −0 README.md
  2. +8 −0 dell/e7240/README.md
  3. +8 −0 dell/e7240/default.nix
  4. +1 −0 release.nix
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -33,6 +33,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>` |
@@ -67,6 +68,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 changes: 8 additions & 0 deletions dell/e7240/README.md
Original file line number Diff line number Diff line change
@@ -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 changes: 8 additions & 0 deletions dell/e7240/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{ lib, pkgs, ... }:

{
imports = [
../../common/cpu/intel
../../common/pc/laptop
];
}
1 change: 1 addition & 0 deletions release.nix
Original file line number Diff line number Diff line change
@@ -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;