This commit is contained in:
peter
2026-07-25 22:56:20 +02:00
parent 529712e363
commit 42dc737dc3
5 changed files with 331 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, 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 = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/7885bde4-b0b0-4e96-a18a-58ef505e5ed4";
fsType = "ext4";
};
swapDevices = [ ];
services.xserver.videoDrivers = [ "modesetting" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}