mirror of
https://github.com/lxstinthesky/matrix.git
synced 2025-11-02 08:52:45 +00:00
17 lines
410 B
Nix
17 lines
410 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_blk" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
# aarch64-linux?
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
} |