From f0a4d6ba78047df5b780aaba2b6cd22e357591b3 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 24 Jan 2024 15:18:00 +0300 Subject: [PATCH] Desktop : Move storage. --- .config/linux/nix/desktop.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.config/linux/nix/desktop.nix b/.config/linux/nix/desktop.nix index 1e17b6c..41a7f1a 100644 --- a/.config/linux/nix/desktop.nix +++ b/.config/linux/nix/desktop.nix @@ -161,8 +161,18 @@ system.stateVersion = "23.11"; # Did you read the comment? # Filesystems. - fileSystems."/var/mnt/storage/hot" = { + fileSystems."/storage/hot" = { device = "/dev/storage/hot"; fsType = "ext4"; }; + + fileSystems."/storage/cold_1" = { + device = "/dev/storage/cold_1"; + fsType = "ext4"; + }; + + fileSystems."/storage/cold_2" = { + device = "/dev/storage/cold_2"; + fsType = "ext4"; + }; }