Skip to content

Commit 4068903

Browse files
committed
Remove deprecated mkFixStrictness call
It has been defined as the identity function for a long time. See NixOS/nixpkgs#129993
1 parent d1990dd commit 4068903

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)