blob: b9622d8cb960faacc6c718094db38d7b82b18d66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, lib, pkgs, modulesPath, ... }:
#TODO: regenerate on physical copenhagen hardware
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}
|