14 lines
206 B
Nix
14 lines
206 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
#(modulesPath + "/profiles/minimal.nix")
|
|
#(modulesPath + "/profiles/perlless.nix")
|
|
];
|
|
|
|
hardware.enableAllHardware = lib.mkForce false;
|
|
}
|