9 lines
189 B
Nix
9 lines
189 B
Nix
|
{ modulesPath, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||
|
(modulesPath + "/profiles/minimal.nix")
|
||
|
(modulesPath + "/profiles/headless.nix")
|
||
|
];
|
||
|
}
|