Add Macbook to the roster and whatnot

This commit is contained in:
Jimbo 2024-10-27 00:45:30 -04:00
parent 59c943eda9
commit fe05f45201
9 changed files with 166 additions and 10 deletions

View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
kernel.sysctl."vm.max_map_count" = 2147483642;
initrd = {
systemd.enable = true;
luks.devices = {
crypt-mmc = {
device = "/dev/disk/by-uuid/5bc11b61-e4dc-465c-b87a-533955cf6177";
preLVM = true;
allowDiscards = true;
};
};
};
};
}