dotfiles/pindakaas/hardware.nix

38 lines
982 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2023-10-28 22:09:36 +02:00
{
imports = [
2023-11-30 19:01:55 +01:00
<nixos-hardware/pine64/pinebook-pro>
2023-10-28 22:09:36 +02:00
];
2023-11-28 00:34:30 +01:00
boot = {
# nixos-hardware use latest kernel by default. It has been set a while ago, we maybe don't need it anymore?
kernelPackages = pkgs.linuxPackages;
# Otherwise it will not show stage1 echo and prompt
2023-11-30 19:01:55 +01:00
# UPST
kernelParams = ["console=tty0"];
2023-11-28 00:34:30 +01:00
# Pinebook supports UEFI, at least when tow-boot is installed on the SPI
loader = {
# EFI Variables don't work (no generation appears in systemd-boot)
efi.canTouchEfiVariables = false;
# systemd-boot crashes after booting, so GRUB it is
grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
};
2023-12-22 19:57:09 +01:00
zramSwap = { # Not capable of building itself otherwise
enable = true;
2023-12-22 20:49:09 +01:00
memoryPercent = 150; # Factory settings
2023-12-22 19:57:09 +01:00
};
2023-12-22 20:20:36 +01:00
# Fixes black font on Alacritty
environment.variables.PAN_MESA_DEBUG = "gl3";
2023-10-28 22:09:36 +02:00
}