10 lines
131 B
Nix
10 lines
131 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[ # Include the results of the hardware scan.
|
||
|
./john.nix
|
||
|
./jill.nix
|
||
|
];
|
||
|
}
|