41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
# 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 = [ "uhci_hcd" "ehci_pci" "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" "sd_mod" "sr_mod" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-amd" ];
|
||
boot.extraModulePackages = [ ];
|
||
|
||
# fileSystems."/" =
|
||
# { device = "/dev/disk/by-uuid/1185d3bc-bd55-42fb-a7ef-9d405e05f871";
|
||
# fsType = "ext4";
|
||
# };
|
||
|
||
# fileSystems."/boot" =
|
||
# { device = "/dev/disk/by-uuid/F439-1F8B";
|
||
# fsType = "vfat";
|
||
# options = [ "fmask=0022" "dmask=0022" ];
|
||
# };
|
||
|
||
# fileSystems."/home" =
|
||
# { device = "/dev/disk/by-uuid/425c456e-52ad-429f-b804-5ebef8c1185a";
|
||
# fsType = "ext4";
|
||
# };
|
||
|
||
# fileSystems."/var/lib/private/ollama" =
|
||
# { device = "/dev/disk/by-uuid/8f9ff952-b34a-4f22-b6c7-abf815216967";
|
||
# fsType = "ext4";
|
||
# };
|
||
|
||
# swapDevices = [ ];
|
||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
}
|