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.
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2020-01-22 12:37:13 +01:00
|
|
|
|
imports = [ <nixpkgs/nixos/modules/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" ];
|
2020-01-22 12:37:13 +01:00
|
|
|
|
boot.extraModulePackages = [];
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2020-01-22 12:37:13 +01:00
|
|
|
|
{
|
|
|
|
|
device = "zroot/root";
|
2019-08-10 12:43:48 +01:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
2020-01-22 12:37:13 +01:00
|
|
|
|
{
|
|
|
|
|
device = "zroot/root/nix";
|
2019-08-10 12:43:48 +01:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2020-01-22 12:37:13 +01:00
|
|
|
|
{
|
|
|
|
|
device = "zroot/root/home";
|
2019-08-10 12:43:48 +01:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2020-01-22 12:37:13 +01:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/3593e0a3-3bc7-42a7-b829-685b9e98e6ba";
|
2019-08-10 12:43:48 +01:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-22 12:37:13 +01:00
|
|
|
|
swapDevices = [];
|
2019-08-10 12:43:48 +01:00
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 16;
|
|
|
|
|
}
|