From 11688778bfcf6b4a4359440c1300487aaa7db883 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Wed, 17 Sep 2025 22:25:29 -0300 Subject: [PATCH] feat: HDD mount point --- common/garage.nix | 2 +- configuration.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/common/garage.nix b/common/garage.nix index 98c5a19..97fbb95 100644 --- a/common/garage.nix +++ b/common/garage.nix @@ -30,7 +30,7 @@ in { } { capacity = "500G"; - path = "/hard/var/lib/garage/data"; + path = "/mnt/sdb1/var/lib/garage/data"; } ]; diff --git a/configuration.nix b/configuration.nix index 94025ba..6c7738a 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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;