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: c0182a06982f
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: 5316e919c8e0
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Oct 30, 2019

  1. Add Dell XPS-7390 Profile (#128)

    Alecktos authored and Mic92 committed Oct 30, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    makefu Felix Richter
    Copy the full SHA
    5316e91 View commit details
Showing with 25 additions and 0 deletions.
  1. +2 −0 README.md
  2. +12 −0 dell/xps/13-7390/README.wiki
  3. +11 −0 dell/xps/13-7390/default.nix
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@ See code for all available configurations.
| 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 7390][] | `<nixos-hardware/dell/xps/13-7390>` |
| [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>` |
@@ -70,6 +71,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 7390]: dell/xps/13-7390
[Dell XPS 13 9360]: dell/xps/13-9360
[Dell XPS 13 9370]: dell/xps/13-9370
[Dell XPS 13 9380]: dell/xps/13-9380
12 changes: 12 additions & 0 deletions dell/xps/13-7390/README.wiki
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
= Dell XPS 13 7390 =

== Firmware upgrades ==

Note that this device is supported by [https://fwupd.org/ fwupd].
To perform firmware upgrades just activate the service

<code>
services.fwupd.enable = true;
</code>

Then use <code>fwupdmgr</code> to perform updates.
11 changes: 11 additions & 0 deletions dell/xps/13-7390/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ lib, pkgs, ... }:

{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];

services.thermald.enable = true;
}