From 626b33befccb1ccfe7c1c056462e64de20e8376b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 21 May 2023 21:24:10 +0200 Subject: [PATCH] disko: fix nix store mountpoint --- modules/disko.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/disko.nix b/modules/disko.nix index 013cadb9..9d8de4f8 100644 --- a/modules/disko.nix +++ b/modules/disko.nix @@ -168,7 +168,7 @@ in type = "zfs_fs"; }; "nixos/nix" = dataset "/nix"; - "nixos/nix/store" = lib.recursiveUpdate (dataset "/nixos/nix/store") { + "nixos/nix/store" = lib.recursiveUpdate (dataset "/nix/store") { options.atime = "off"; }; "nixos/nix/var" = dataset "/nix/var";