mochi/.archive/profiles/hw-thinkpad-t470.nix

27 lines
571 B
Nix
Raw Normal View History

2024-06-20 08:59:56 -05:00
{
2025-03-06 09:51:33 -06:00
config,
lib,
...
}: {
2024-06-20 08:59:56 -05:00
boot = {
# Use the systemd-boot EFI boot loader.
loader = {
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
};
};
};
networking = {
useDHCP = lib.mkDefault true;
};
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}