This commit is contained in:
tulg 2026-05-06 16:04:54 +03:00
parent 0875e05f71
commit 8c44e6e6cc
7 changed files with 284 additions and 15 deletions

View file

@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.loader.grub = {
enable = true;
efiSupport = true;
};
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}