Add Asus TUF FX504GD

This commit is contained in:
ImExtends 2020-05-20 15:35:48 +01:00 committed by Jörg Thalheim
parent 55f9eb6a73
commit c75ebd4129
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
3 changed files with 13 additions and 0 deletions

View File

@ -74,6 +74,7 @@ See code for all available configurations.
| Apple MacBook Air 6,X | `<nixos-hardware/apple/macbook-air/6>` |
| [Apple MacBook Pro 10,1][] | `<nixos-hardware/apple/macbook-pro/10-1>` |
| Apple MacBook Pro 12,1 | `<nixos-hardware/apple/macbook-pro/12-1>` |
| Asus TUF FX504GD | `<nixos-hardware/asus/fx504gd>` |
| BeagleBoard PocketBeagle | `<nixos-hardware/beagleboard/pocketbeagle>` |
| Dell Latitude 3480 | `<nixos-hardware/dell/latitude/3480>` |
| [Dell XPS E7240][] | `<nixos-hardware/dell/e7240>` |
@ -128,6 +129,7 @@ See code for all available configurations.
| [Tuxedo InfinityBook v4][] | `<nixos-hardware/tuxedo/infinitybook/v4>` |
[Acer Aspire 4810T]: acer/aspire/4810t
[Asus TUF FX504GD]: asus/fx504gd
[Apple MacBook Pro 10,1]: apple/macbook-pro/10-1
[Dell XPS E7240]: dell/e7240
[Dell XPS 13 7390]: dell/xps/13-7390

10
asus/fx504gd/default.nix Normal file
View File

@ -0,0 +1,10 @@
{ ... }:
{
imports = [
../../common/cpu/intel
../../common/pc/laptop
];
#Nouveau doesn't work at all on this model.
boot.kernelParams = [ "nouveau.modeset=0" ];
}

View File

@ -4,6 +4,7 @@
outputs = { self }: {
nixosModules = {
dell-aspire-4810t = import ./acer/aspire/4810t;
asus-fx504gd = import ./asus/fx504gd;
apple-macbook-air-3 = import ./apple/macbook-air/3;
apple-macbook-air-4 = import apple/macbook-air/4;
apple-macbook-air-6 = import apple/macbook-air/6;