11 lines
187 B
Nix
11 lines
187 B
Nix
# Implementation of support for general System76 hardware.
|
|
#
|
|
# https://system76.com/
|
|
|
|
{ lib, ... }:
|
|
{
|
|
imports = [ ../common/pc ];
|
|
|
|
hardware.system76.enableAll = lib.mkDefault true;
|
|
}
|