38 lines
946 B
Nix
38 lines
946 B
Nix
# 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" "ehci_pci" "ahci" "uas" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-intel" ];
|
||
boot.extraModulePackages = [ ];
|
||
|
||
fileSystems."/" = {
|
||
device = "/dev/disk/by-uuid/eb51e914-c9ab-400d-bd2a-004a3b788caa";
|
||
fsType = "btrfs";
|
||
};
|
||
|
||
fileSystems."/boot" = {
|
||
device = "/dev/disk/by-uuid/8A71-E5EB";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
fileSystems."/mnt/raid" = {
|
||
device = "/dev/sdc";
|
||
fsType = "btrfs";
|
||
};
|
||
|
||
fileSystems."/mnt/raid1" = {
|
||
device = "/dev/sde1";
|
||
fsType = "btrfs";
|
||
};
|
||
|
||
swapDevices = [ ];
|
||
|
||
}
|