nix-config/hosts/pulsebert/hardware-configuration.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2020-06-19 19:05:46 +02: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 = [ "usbhid" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
2022-03-18 20:26:53 +01:00
# mkForce to get rid of "console=ttyAMA0" from sd-image-aarch64.nix
boot.kernelParams = lib.mkForce [
"snd_bcm2835.enable_headphones=1"
];
2020-06-19 19:05:46 +02:00
2021-02-22 11:45:12 +01:00
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
2020-06-19 19:05:46 +02:00
2021-09-23 00:04:02 +02:00
fileSystems."/boot/firmware" = {
2021-02-22 11:45:12 +01:00
device = "/dev/disk/by-label/FIRMWARE";
fsType = "vfat";
};
2020-06-19 19:05:46 +02:00
swapDevices = [ ];
hardware.enableRedistributableFirmware = true;
#networking.wireless.enable = true;
boot.loader.raspberryPi.firmwareConfig = ''
gpu_mem=192
dtparam=audio=on
'';
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
}