Add Asus TUF FX504GD
This commit is contained in:
parent
55f9eb6a73
commit
c75ebd4129
|
@ -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
10
asus/fx504gd/default.nix
Normal 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" ];
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue