2022-08-16 14:20:36 +02: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 =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2022-08-16 14:20:36 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "megaraid_sas" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "rpool/nixos/root";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
options = [ "zfsutil" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "rpool/nixos/home";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
options = [ "zfsutil" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/var/lib" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "rpool/nixos/var/lib";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
options = [ "zfsutil" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/var/log" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "rpool/nixos/var/log";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
options = [ "zfsutil" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/7FE6-F583";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
2022-09-06 17:16:31 +02:00
|
|
|
|
{
|
|
|
|
|
device = "rpool/nixos/nix";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
options = [ "zfsutil" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno8303.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno8403.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp65s0f0np0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp65s0f1np1.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|