diff --git a/README.md b/README.md index 4cfbf53..648f129 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ See code for all available configurations. | Apple MacBook Pro 12,1 | `` | | BeagleBoard PocketBeagle | `` | | [Dell XPS E7240][] | `` | +| [Dell XPS 13 7390][] | `` | | [Dell XPS 13 9360][] | `` | | [Dell XPS 13 9370][] | `` | | [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 diff --git a/dell/xps/13-7390/README.wiki b/dell/xps/13-7390/README.wiki new file mode 100644 index 0000000..c5eac59 --- /dev/null +++ b/dell/xps/13-7390/README.wiki @@ -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 + + +services.fwupd.enable = true; + + +Then use fwupdmgr to perform updates. diff --git a/dell/xps/13-7390/default.nix b/dell/xps/13-7390/default.nix new file mode 100644 index 0000000..727ea5c --- /dev/null +++ b/dell/xps/13-7390/default.nix @@ -0,0 +1,11 @@ +{ lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop + ../../../common/pc/laptop/ssd + ]; + + services.thermald.enable = true; +}