2019-08-10 12:43:48 +01: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.
|
2020-11-25 18:34:51 +00:00
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
|
|
|
|
{
|
2020-11-25 18:34:51 +00:00
|
|
|
|
imports = [ "${modulesPath}/installer/scan/not-detected.nix" ];
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "sd_mod" ];
|
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
|
|
2021-05-12 16:00:40 +00:00
|
|
|
|
fileSystems."/" = {
|
2021-05-12 18:24:32 +00:00
|
|
|
|
device = "zroot/root/nixos";
|
|
|
|
|
fsType = "zfs";
|
2021-05-12 16:00:40 +00:00
|
|
|
|
};
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
2021-05-12 16:00:40 +00:00
|
|
|
|
fileSystems."/home" = {
|
|
|
|
|
device = "zroot/root/home";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
2021-05-12 16:00:40 +00:00
|
|
|
|
fileSystems."/boot" = {
|
2021-05-12 18:24:32 +00:00
|
|
|
|
device = "/dev/disk/by-uuid/6b1b00a5-2d03-4a33-ac59-c8031e543c66";
|
2021-05-12 16:00:40 +00:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2019-08-10 12:43:48 +01:00
|
|
|
|
}
|