Files
nix-config/nixos/hardware-configuration.nix
winter 099a6d05fa update
skwd (not working properly)
2026-05-31 11:47:44 -07:00

39 lines
1.1 KiB
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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 + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/aa5d9502-4814-4db1-a4de-da47d0e0009c";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/8B55-BB00";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
#Steam partition
fileSystems."/mnt/data" = {
device = "/dev/disk/by-uuid/4d405cb8-1082-46ef-9248-f10709b85ba9";
fsType = "ext4";
options = [ "nofail" "rw" "user" "exec" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}