nixos-config/machines/apache/hardware-configuration.nix

45 lines
1.7 KiB
Nix
Raw Normal View History

2022-06-17 14:13:13 +00: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, ... }:
{
2022-06-18 14:16:12 +00:00
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
2022-06-17 14:13:13 +00:00
2022-06-18 14:16:12 +00:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_usb_sdmmc" ];
2022-06-17 14:13:13 +00:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2022-06-18 14:16:12 +00:00
{ device = "/dev/disk/by-uuid/58100870-c0e2-414f-aa8a-2f2cde8ae4da";
2022-06-17 14:13:13 +00:00
fsType = "ext4";
};
2022-06-18 14:46:22 +00:00
boot.initrd.luks.devices = {
crypt-nixos.device = "/dev/disk/by-uuid/4345618c-6968-465f-8ebd-1d76defc0f57";
crypt-swap.device = "/dev/disk/by-uuid/fa3440af-0354-4299-860e-01a3b012416f";
};
2022-06-18 14:16:12 +00:00
2022-06-17 14:13:13 +00:00
fileSystems."/boot" =
2022-06-18 14:16:12 +00:00
{ device = "/dev/disk/by-uuid/01E5-F47D";
2022-06-17 14:13:13 +00:00
fsType = "vfat";
};
swapDevices =
2022-06-18 14:16:12 +00:00
[ { device = "/dev/disk/by-uuid/9b775e18-ab8c-4647-9ab1-a51391af6d6d"; }
2022-06-17 14:13:13 +00:00
];
# 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;
2022-06-18 14:16:12 +00:00
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
2022-06-17 14:13:13 +00:00
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}