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"; + }; }