11 lines
187 B
Nix
11 lines
187 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
# Include system-level configurations
|
|
../../system
|
|
];
|
|
}
|