From 5a92dad529c4f07ba8695390d36215567cbf73a3 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 2 Feb 2026 17:33:49 +0900 Subject: [PATCH] hosts/xps16: add ~/archive mount --- hosts/xps16/disks.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/xps16/disks.nix b/hosts/xps16/disks.nix index fa3b60f..9c41457 100644 --- a/hosts/xps16/disks.nix +++ b/hosts/xps16/disks.nix @@ -141,12 +141,15 @@ mountOptions = [ "compress=zstd" "noatime" ]; }; } + (makeSnapshottable "/home/h7x4" [ "compress=zstd" "noatime" "nodev" ]) - (makeAtSnapshottable "/home/h7x4/git" [ "compress=zstd" "noatime" "nodev" ]) + (makeAtSnapshottable "/home/h7x4/archive" [ "compress-force=zstd15" "noatime" "nodev" ]) (makeAtSnapshottable "/home/h7x4/ctf" [ "compress=zstd" "noatime" "nodev" ]) (makeAtSnapshottable "/home/h7x4/downloads" [ "compress=zstd" "noatime" "nosuid" "nodev" ]) - (makeAtSnapshottable "/home/h7x4/pictures" [ "compress=zstd" "noatime" "noexec" "nosuid" "nodev" ]) + (makeAtSnapshottable "/home/h7x4/git" [ "compress=zstd" "noatime" "nodev" ]) (makeAtSnapshottable "/home/h7x4/music" [ "compress=zstd" "noatime" "noexec" "nosuid" "nodev" ]) + (makeAtSnapshottable "/home/h7x4/pictures" [ "compress=zstd" "noatime" "noexec" "nosuid" "nodev" ]) + (makeSnapshottable "/var/log" [ "compress=zstd" "noatime" "noexec" "nosuid" "nodev" ]) (makeSnapshottable "/var/lib" [ "compress=zstd" "noatime" "nosuid" "nodev" ]) (makeAtSnapshottable "/var/lib/docker" [ "compress=zstd" "noatime" ])