mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
fix mount.partition by non rehashing already hashed device-id
This commit is contained in:
parent
e9d1f151a2
commit
5643130fbb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue