summary refs log tree commit diff
path: root/nixos/modules/tasks/encrypted-devices.nix
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2017-09-25 00:45:52 +0200
committerRok Garbas <rok@garbas.si>2017-09-29 19:55:28 +0200
commit748ef34f098451652a785455953667520ca14fa4 (patch)
treec601665d37bba78c57e7b2b7d1e73cb44109c921 /nixos/modules/tasks/encrypted-devices.nix
parent63f56e0d2f4d43422ecda3d097889a109e08aea3 (diff)
downloadnixpkgs-748ef34f098451652a785455953667520ca14fa4.tar
nixpkgs-748ef34f098451652a785455953667520ca14fa4.tar.gz
nixpkgs-748ef34f098451652a785455953667520ca14fa4.tar.bz2
nixpkgs-748ef34f098451652a785455953667520ca14fa4.tar.lz
nixpkgs-748ef34f098451652a785455953667520ca14fa4.tar.xz
nixpkgs-748ef34f098451652a785455953667520ca14fa4.tar.zst
nixpkgs-748ef34f098451652a785455953667520ca14fa4.zip
assertion should check for encrypted.label of the defined fileSystem
Diffstat (limited to 'nixos/modules/tasks/encrypted-devices.nix')
-rw-r--r--nixos/modules/tasks/encrypted-devices.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/encrypted-devices.nix b/nixos/modules/tasks/encrypted-devices.nix
index fa0abb43c0c..6bbf335e7db 100644
--- a/nixos/modules/tasks/encrypted-devices.nix
+++ b/nixos/modules/tasks/encrypted-devices.nix
@@ -57,7 +57,7 @@ in
 
   config = mkIf anyEncrypted {
     assertions = map (dev: {
-      assertion = dev.label != null;
+      assertion = dev.encrypted.label != null;
       message = ''
         The filesystem for ${dev.mountPoint} has encrypted.enable set to true, but no encrypted.label set
       '';