From 05b0762421555d2c76283ded6d30f35191f06f58 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Mon, 15 Jul 2024 21:29:57 +0200 Subject: [PATCH] disko: add opt --- disko/btrfs_luks.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/disko/btrfs_luks.nix b/disko/btrfs_luks.nix index 876d5e3..90d0309 100644 --- a/disko/btrfs_luks.nix +++ b/disko/btrfs_luks.nix @@ -47,6 +47,10 @@ mountpoint = "/nix"; mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ]; }; + "@opt" = { + mountpoint = "/opt"; + mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ]; + }; "@snapshots" = { mountpoint = "/mnt"; mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];