diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2022-08-23 20:08:56 +0200 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2022-08-23 20:37:22 +0200 |
commit | 5643130fbbb79075ed152f89cbb01ff03080d136 (patch) | |
tree | 0e26e0accab0239f9c58a1210fcdc7bf123b2db4 /lib | |
parent | e9d1f151a2582d5a3084311414eceb768edcbd2d (diff) |
fix mount.partition by non rehashing already hashed device-id
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix index 9f62428..f2908f5 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -159,7 +159,7 @@ let { mount.noop = q: x: {}; mount.partition = q: x: - mount-f { device = "\"\${${helper.device-id q.device}}\"-part" + toString q.index; } x.content; + mount-f { device = "\"\${${q.device}}\"-part" + toString q.index; } x.content; mount.table = q: x: ( recursiveUpdate |