summary refs log tree commit diff
path: root/nixos/modules/virtualisation/azure-image.nix
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2014-09-06 22:54:15 +0200
committerRob Vermaas <rob.vermaas@gmail.com>2014-09-06 22:54:15 +0200
commitf14d1d76bb14dd186ee6854aded124cdb09133db (patch)
tree4e96ffb7a381d4438c6734ba78204f935e584e13 /nixos/modules/virtualisation/azure-image.nix
parent0418d8299d17e7efac7585bf7843c4a3356e9316 (diff)
downloadnixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar.gz
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar.bz2
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar.lz
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar.xz
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.tar.zst
nixpkgs-f14d1d76bb14dd186ee6854aded124cdb09133db.zip
Azure: Fix authorized_keys
Diffstat (limited to 'nixos/modules/virtualisation/azure-image.nix')
-rw-r--r--nixos/modules/virtualisation/azure-image.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix
index c415890d6c4..ec7e8888c03 100644
--- a/nixos/modules/virtualisation/azure-image.nix
+++ b/nixos/modules/virtualisation/azure-image.nix
@@ -121,5 +121,5 @@ in
 
   networking.usePredictableInterfaceNames = false;
 
-  users.extraUsers.root.openssh.authorizedKeys.keys = [ builtins.readFile <ssh-pub-key> ];
+  users.extraUsers.root.openssh.authorizedKeys.keys = [ (builtins.readFile <ssh-pub-key>) ];
 }