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: 741b3ba508e1
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: 984c72f65312
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 13, 2020

  1. Add Asus TUF FX504GD

    ImExtends authored and Mic92 committed Aug 13, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    meyfa Fabian Meyer
    Copy the full SHA
    c75ebd4 View commit details
  2. Merge pull request #185 from Mic92/asus-fx504gd

    Asus TUF FX504GD
    Mic92 authored Aug 13, 2020
    Copy the full SHA
    984c72f View commit details
Showing with 13 additions and 0 deletions.
  1. +2 −0 README.md
  2. +10 −0 asus/fx504gd/default.nix
  3. +1 −0 flake.nix
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 changes: 10 additions & 0 deletions asus/fx504gd/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
}
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -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;