This commit is contained in:
outfoxxed 2025-04-20 21:48:59 -07:00
commit 57fa994768
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
9 changed files with 311 additions and 0 deletions

18
boot.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }: {
boot = {
loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
kernelPackages = pkgs.linuxPackages_latest;
};
fileSystems = {
"/" = {
fsType = "tmpfs";
neededForBoot = true;
options = [ "mode=755" ];
};
};
}