nixos-configs/devices/bbsteamie/hardware-configuration.nix

58 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-29 21:38:22 -04:00
{
config,
lib,
modulesPath,
...
}: {
nixpkgs.hostPlatform = "x86_64-linux";
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
jovian = {
steamos.useSteamOSConfig = true;
devices.steamdeck = {
enable = true;
enableGyroDsuService = true;
};
hardware.has.amd.gpu = true;
};
2024-06-29 21:38:22 -04:00
boot = {
kernelModules = ["kvm-amd"];
initrd.availableKernelModules = ["nvme" "xhci_pci" "usbhid" "sdhci_pci"];
2024-06-29 21:38:22 -04:00
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
configurationLimit = 30;
};
};
};
virtualisation.waydroid.enable = true;
fileSystems = {
"/" = {
2024-06-29 21:38:22 -04:00
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
2024-06-29 21:38:22 -04:00
options = ["fmask=0022" "dmask=0022"];
};
};
2024-06-29 21:38:22 -04:00
swapDevices = [
{
device = "/.swapfile";
size = 16 * 1024; # 16GB
2024-06-29 21:38:22 -04:00
}
];
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}