Files
nix-config/modules/hosts/alpha/hardware.nix

18 lines
321 B
Nix

{
flake.modules.nixos.alpha = {
pkgs,
lib,
modulesPath,
system,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.kernelPackages = pkgs.linuxPackages_zen;
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault system;
};
}