nixos-configs/devices/binto/hardware-configuration.nix
matt1432 d59a949e2a
All checks were successful
Discord / discord commits (push) Has been skipped
fix(ags binto): change paths to wim config files
2023-12-28 22:47:21 -05:00

77 lines
1.5 KiB
Nix

{
config,
lib,
modulesPath,
pkgs,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot = {
kernelPackages = pkgs.linuxPackages_xanmod_latest;
kernelModules = ["kvm-amd"];
extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
supportedFilesystems = ["ntfs"];
consoleLogLevel = 0;
initrd = {
verbose = false;
systemd.enable = true;
availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod"];
};
loader = {
efi.canTouchEfiVariables = true;
timeout = 2;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
extraConfig = ''
set timeout_style=hidden
'';
splashImage = null;
};
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/560976b6-85e0-44ca-bb73-e15a78e9c449";
fsType = "btrfs";
options = ["subvol=@"];
};
"/boot" = {
device = "/dev/disk/by-uuid/1407-A10C";
fsType = "vfat";
};
"/run/media/matt/Games" = {
device = "/dev/disk/by-uuid/da62f4ee-d4a6-4fdd-ab12-9c5e131c6f30";
fsType = "ext4";
};
};
zramSwap.enable = true;
hardware = {
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
uinput.enable = true;
};
virtualisation = {
libvirtd.enable = true;
};
environment.systemPackages = with pkgs; [
qemu
virtiofsd
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}