Files
nixos/hosts/steamdeck.cloonar.com/hardware-configuration.nix

57 lines
1.9 KiB
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "sdhci_pci" "vfat" "nls_cp437" "nls_iso8859-1" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/2bc0a1c5-dd58-4824-9a27-4e6e6f33a2e8";
fsType = "ext4";
};
# boot.initrd.luks.devices."luks-4dfc511b-12f9-46ef-be2a-f4e026263005".device = "/dev/disk/by-uuid/4dfc511b-12f9-46ef-be2a-f4e026263005";
boot.initrd.luks = {
yubikeySupport = true;
devices."luks-4dfc511b-12f9-46ef-be2a-f4e026263005" = {
device = "/dev/disk/by-uuid/4dfc511b-12f9-46ef-be2a-f4e026263005";
yubikey = {
slot = 2;
twoFactor = false;
storage = {
device = "/dev/disk/by-uuid/661D-F155";
};
};
};
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/661D-F155";
fsType = "vfat";
};
fileSystems."/run/media/sdcard" =
{ device = "/dev/disk/by-uuid/de7d0993-d547-4d9b-a99a-8a8d71fc05e2";
fsType = "ext4";
};
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.enp4s0f3u1u3c2.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}