This commit is contained in:
winter
2026-05-27 18:04:34 -07:00
parent fbefeba6a2
commit c67e7d779c
6 changed files with 95 additions and 8 deletions

View File

@@ -0,0 +1,39 @@
# 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" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/05ca00ef-287b-46a6-87a3-242c26d4f6dc";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/74E9-DC7F";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
#Steam parition to fstab
fileSystems."/mnt/steamstorage" = {
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;
}