nixfiles/hosts/twinkpad/hardware-configuration.nix

44 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2024-03-16 12:21:25 +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, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "uas" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/f84ca426-6c93-4b89-a957-462ee3892874";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-b222056c-4062-4e54-8696-4e13be9b7096".device = "/dev/disk/by-uuid/b222056c-4062-4e54-8696-4e13be9b7096";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/B013-3BBA";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/a514444b-bbbb-4b5e-a7dd-0f0ee6a685c2"; }
];
# 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.enp0s31f6.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp58s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wwp0s20f0u6i12.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}