infra/nix/os/devices/steveej-t14/boot.nix

13 lines
380 B
Nix
Raw Normal View History

2024-11-15 10:17:56 +01:00
{ lib, pkgs, ... }:
2020-12-21 14:35:50 +01:00
{
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
2022-10-31 11:04:38 +01:00
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_latest;
2023-02-07 18:23:51 +01:00
# boot.tmpOnTmpfs = lib.mkForce false;
boot.tmp.tmpfsSize = "100%";
2023-02-07 18:23:51 +01:00
# TODO: make this work
# systemd.tmpfiles.rules = lib.mkForce [ "d /tmp 1777 root root 1d" ];
2020-12-21 14:35:50 +01:00
}