nix-powerpc/minimal.nix
2025-02-10 11:47:09 +00:00

14 lines
206 B
Nix

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