Add flight back. It will be my laptop for my Club

This commit is contained in:
Bun 2025-07-11 23:37:45 -04:00
parent 9eaddef14e
commit c35f717231
9 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ lib, pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages;
loader.limine = {
enable = true;
biosDevice = lib.mkForce "/dev/disk/by-id/ata-XSTAR_SSD_64GB_XSFA2011000462";
};
plymouth.enable = true;
};
}