Skip to content

Commit 0056e04

Browse files
authored
Merge pull request #137 from hercules-ci/remove-deprecated-mkFixStrictness
Remove deprecated mkFixStrictness call
2 parents 5ee6b06 + 4068903 commit 0056e04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nixops_aws/nix/ec2.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -508,12 +508,12 @@ in
508508
# Workaround: the evaluation of blockDeviceMapping requires fileSystems to be defined.
509509
fileSystems = {};
510510

511-
deployment.ec2.blockDeviceMapping = mkFixStrictness (listToAttrs
511+
deployment.ec2.blockDeviceMapping = listToAttrs
512512
(map (fs: nameValuePair (dmToDevice fs.device)
513513
{ inherit (fs.ec2) disk size deleteOnTermination encrypt cipher keySize passphrase iops volumeType encryptionType;
514514
fsType = if fs.fsType != "auto" then fs.fsType else fs.ec2.fsType;
515515
})
516-
(filter (fs: fs.ec2 != null) (attrValues config.fileSystems))));
516+
(filter (fs: fs.ec2 != null) (attrValues config.fileSystems)));
517517

518518
deployment.autoLuks =
519519
let

0 commit comments

Comments
 (0)