Update hardware-configuration.nix

This commit is contained in:
Tyler 2025-04-26 20:54:18 -04:00 committed by GitHub
parent 2052878f86
commit 89e47bc984
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,17 +28,17 @@
options = ["fmask=0022" "dmask=0022"];
};
fileSystems."/mnt/user" = {
device = "array";
fileSystems."/mnt/store" = {
device = "nix-store";
fsType = "9p";
};
fileSystems."/nix/store" = {
depends = [
"/mnt/user"
"/mnt/store"
];
device = "/mnt/user/nix-store";
device = "/mnt/store";
fsType = "none";
options = [
"bind"