12 lines
185 B
Nix
12 lines
185 B
Nix
{ inputs, ... }:
|
|
let
|
|
inherit (inputs) nixos-hardware;
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
nixos-hardware.nixosModules.pcengines-apu
|
|
];
|
|
}
|