78 lines
2.1 KiB
Nix
78 lines
2.1 KiB
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 =
|
||
[ "ohci_pci" "ehci_pci" "sata_nv" "sd_mod" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-amd" ];
|
||
boot.extraModulePackages = [ ];
|
||
|
||
fileSystems."/" = {
|
||
device = "none";
|
||
fsType = "tmpfs";
|
||
options = [ "defaults" "mode=755" ];
|
||
};
|
||
|
||
fileSystems."/persist" = {
|
||
device = "zroot/root";
|
||
fsType = "zfs";
|
||
neededForBoot = true;
|
||
};
|
||
|
||
fileSystems."/boot" = {
|
||
device = "zboot/boot";
|
||
fsType = "zfs";
|
||
};
|
||
|
||
fileSystems."/home" = {
|
||
device = "zroot/home";
|
||
fsType = "zfs";
|
||
};
|
||
|
||
fileSystems."/nix" = {
|
||
device = "zroot/nix";
|
||
fsType = "zfs";
|
||
};
|
||
|
||
fileSystems."/var" = {
|
||
device = "zroot/var";
|
||
fsType = "zfs";
|
||
};
|
||
|
||
fileSystems."/video-data" = {
|
||
device = "rpool/video-data";
|
||
fsType = "zfs";
|
||
};
|
||
|
||
fileSystems."/efi" = {
|
||
device = "/dev/disk/by-uuid/6ED6-2ED0";
|
||
fsType = "vfat";
|
||
options = [ "nofail" ];
|
||
};
|
||
|
||
fileSystems."/efi1" = {
|
||
device = "/dev/disk/by-uuid/6A4C-BAFE";
|
||
fsType = "vfat";
|
||
options = [ "nofail" ];
|
||
};
|
||
|
||
swapDevices = [
|
||
{ device = "/dev/disk/by-uuid/aecf6400-9c9f-43f9-8c57-08f3c8a633e7"; }
|
||
{ device = "/dev/disk/by-uuid/3fca7d18-441c-4f39-adad-ffd882b1f210"; }
|
||
];
|
||
|
||
# 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 false;
|
||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
hardware.cpu.amd.updateMicrocode =
|
||
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
}
|