nix/hosts/ti-clt-lpt01/hardware-configuration.nix

43 lines
1.7 KiB
Nix
Raw Normal View History

2024-03-09 17:18:36 +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, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
2024-06-21 11:13:17 +02:00
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "usb_storage" "sd_mod" ];
2024-03-09 17:18:36 +01:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2024-05-28 14:19:16 +02:00
{ device = "/dev/disk/by-uuid/4f1908a5-46e5-411e-a8ea-ef97e45337f0";
2024-03-09 17:18:36 +01:00
fsType = "ext4";
};
fileSystems."/boot" =
2024-05-28 14:19:16 +02:00
{ device = "/dev/disk/by-uuid/B9AD-ABDC";
2024-03-09 17:18:36 +01:00
fsType = "vfat";
2024-05-28 14:19:16 +02:00
options = [ "fmask=0022" "dmask=0022" ];
2024-03-09 17:18:36 +01:00
};
2024-05-28 14:19:16 +02:00
swapDevices = [ ];
2024-03-09 17:18:36 +01: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;
2024-06-21 11:13:17 +02:00
# networking.interfaces.br-1dc84fe6529c.useDHCP = lib.mkDefault true;
# networking.interfaces.docker0.useDHCP = lib.mkDefault true;
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
# networking.interfaces.veth9b2658e.useDHCP = lib.mkDefault true;
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
2024-03-09 17:18:36 +01:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}