feat(install): add disko direct-url workflow

This commit is contained in:
randogoth 2026-02-04 15:57:45 +02:00
parent 7a42926fba
commit 973bac7ed0
8 changed files with 154 additions and 92 deletions

View file

@ -0,0 +1,14 @@
{ config, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}