This commit is contained in:
2026-06-23 15:25:17 -07:00
commit 94b1c71b1e
32 changed files with 4504 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# 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;
}