updated nixos

This commit is contained in:
essse-est
2026-09-12 06:49:33 -05:00
parent d9214ffabd
commit c91432d2b8
7 changed files with 260 additions and 50 deletions
+40
View File
@@ -0,0 +1,40 @@
# 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" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/f30ad54f-7598-46b2-b484-0a652c1d805c";
fsType = "xfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/08B2-36C3";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
fileSystems."/mnt/1tb1" =
{ device = "/dev/disk/by-uuid/9edf6659-16f6-4d6f-898f-c32fb849710a";
fsType = "xfs";
};
fileSystems."/mnt/1tb2" =
{ device = "/dev/disk/by-uuid/4770e6c5-33d4-4921-ad4b-877504c77446";
fsType = "xfs";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/a6f63a27-2bdc-46aa-9e0c-56ec680bbf4f"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}