2021-01-17 14:47:14 -08:00
|
|
|
|
# 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" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2021-10-24 01:12:41 +02:00
|
|
|
|
{ device = "zroot/root/nixos";
|
|
|
|
|
fsType = "zfs";
|
2021-01-17 14:47:14 -08:00
|
|
|
|
};
|
|
|
|
|
|
2021-10-24 01:12:41 +02:00
|
|
|
|
fileSystems."/home" =
|
|
|
|
|
{ device = "zroot/root/home";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2021-01-17 14:47:14 -08:00
|
|
|
|
|
2021-10-24 01:12:41 +02:00
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/38c6201e-5686-4984-bca1-45b606ecdde8";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2021-01-17 14:47:14 -08:00
|
|
|
|
}
|