1
0
Fork 0
dotfiles/nix/hosts/framework/hw.nix
Lucas Sta Maria 35e75575f8
feat(nix): add nix flakes
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-07-27 21:33:41 -07:00

39 lines
1.4 KiB
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules =
[ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/185554c8-457b-4839-8087-6c55d5534870";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-72d425c2-53a4-435b-b560-347e400294e9".device =
"/dev/disk/by-uuid/72d425c2-53a4-435b-b560-347e400294e9";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/AC29-FAB9";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
# 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.enp193s0f3u2u2.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
}