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"]; options = ["fmask=0022" "dmask=0022"];
}; };
fileSystems."/mnt/user" = { fileSystems."/mnt/store" = {
device = "array"; device = "nix-store";
fsType = "9p"; fsType = "9p";
}; };
fileSystems."/nix/store" = { fileSystems."/nix/store" = {
depends = [ depends = [
"/mnt/user" "/mnt/store"
]; ];
device = "/mnt/user/nix-store"; device = "/mnt/store";
fsType = "none"; fsType = "none";
options = [ options = [
"bind" "bind"