feat: HDD mount point

This commit is contained in:
Guz
2025-09-17 22:25:29 -03:00
parent 5f0e7a7435
commit 11688778bf
2 changed files with 7 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ in {
}
{
capacity = "500G";
path = "/hard/var/lib/garage/data";
path = "/mnt/sdb1/var/lib/garage/data";
}
];

View File

@@ -112,6 +112,12 @@ with lib; {
programs.mosh.enable = true;
programs.mosh.openFirewall = true;
# Mount points
fileSystems."/mnt/sdb1" = {
device = "/dev/disk/by-uuid/a47ddc97-d7f0-4e35-a283-4506e14a0729";
fsType = "ext4";
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;