11 lines
233 B
Nix
11 lines
233 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = with inputs.nixos-hardware.nixosModules; [
|
|
common-cpu-intel
|
|
# common-gpu-intel # This leads to a "prop ... defined twice" error
|
|
common-pc-laptop
|
|
common-pc-ssd
|
|
./generated.nix
|
|
];
|
|
}
|