This commit is contained in:
Shelvacu
2025-05-07 11:17:23 -07:00
committed by Shelvacu on fw
parent 3e4905665d
commit 2525058148

View File

@@ -13,6 +13,9 @@
./tpm-fido.nix
];
#experiment
boot.supportedFilesystems = [ "flargedyboop" ];
vacu.hostName = "fw";
vacu.shell.color = "magenta";
vacu.verifySystem.expectedMac = "e8:65:38:52:5c:59";
@@ -20,7 +23,6 @@
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
boot.supportedFilesystems = [ "bcachefs" ]; # for some experimenting
networking.networkmanager.enable = true;
# boot.kernelParams = [ "nvme.noacpi=1" ]; # DONT DO IT: breaks shit even more
@@ -84,6 +86,16 @@
fsType = "zfs";
};
fileSystems."/cache" = {
device = "fw/cache";
fsType = "zfs";
};
fileSystems."/home/shelvacu/cache" = {
device = "/cache/shelvacu";
options = [ "bind" ];
};
fileSystems."/boot0" = {
device = "/dev/disk/by-label/BOOT0";
fsType = "vfat";