diff options
author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2020-05-05 12:47:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 12:47:32 +0100 |
commit | 4ef357fe8badf2a5cc2a2f7790ed6cd40a8708fb (patch) | |
tree | b7e66dcbedce19649e49e72852d8568faf41d0a4 | |
parent | d928c96e3c86423e829779c84eef70848b835923 (diff) | |
parent | d7d897fe2499df6a4ea561d7ed642d1c1f30c98e (diff) |
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | dell/latitude/3480/default.nix | 14 |
2 files changed, 15 insertions, 0 deletions
@@ -34,6 +34,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 Latitude 3480 | `<nixos-hardware/dell/latitude/3480>` | | [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>` | diff --git a/dell/latitude/3480/default.nix b/dell/latitude/3480/default.nix new file mode 100644 index 0000000..86be458 --- /dev/null +++ b/dell/latitude/3480/default.nix @@ -0,0 +1,14 @@ +{ lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop + ../../../common/pc/laptop/ssd + ]; + + # touchpad goes over i2c + boot.blacklistedKernelModules = [ "psmouse" ]; + + services.xserver.videoDrivers = lib.mkDefault [ "intel" ]; +} |