Добавить монтирование дисков на cloud-pc

This commit is contained in:
Dmitry
2026-05-29 16:18:05 +03:00
parent 9346736842
commit cf079ba65b
+19 -1
View File
@@ -10,6 +10,24 @@
networking.hostName = "cloud-pc";
fileSystems."/opt/data" = {
device = "/dev/disk/by-uuid/ae278333-4116-4225-9b95-595496fadd26";
fsType = "ext4";
options = [ "nofail" ];
};
fileSystems."/opt/samba" = {
device = "/dev/disk/by-uuid/89024d30-1ab6-4b2e-b23b-62837455b24a";
fsType = "ext4";
options = [ "nofail" ];
};
fileSystems."/mnt/backup" = {
device = "/dev/disk/by-uuid/940a9a4e-10cf-4380-9d22-a71549066561";
fsType = "ext4";
options = [ "nofail" ];
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@@ -27,5 +45,5 @@
];
};
system.stateVersion = "26.05";
system.stateVersion = "25.11";
}