diff options
author | EuAndreh <eu@euandre.org> | 2019-06-01 20:16:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-01 20:16:29 -0300 |
commit | 07543eb8898a59ef9a6ffbc2e2b9605439c56d0a (patch) | |
tree | c60a3fa05165b292699a458282918ee75d3f47b7 /public/nixos | |
parent | Use /mnt as installation root (diff) | |
download | dotfiles-07543eb8898a59ef9a6ffbc2e2b9605439c56d0a.tar.gz dotfiles-07543eb8898a59ef9a6ffbc2e2b9605439c56d0a.tar.xz |
Fix luksDevice interpolation in template.nix
Diffstat (limited to 'public/nixos')
-rw-r--r-- | public/nixos/template.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/nixos/template.nix b/public/nixos/template.nix index 80367df..c44ab60 100644 --- a/public/nixos/template.nix +++ b/public/nixos/template.nix @@ -1,5 +1,5 @@ { - hostName = "$HOST_NAME"; - luksDevice = "$DEVICE"; + hostName = "${HOST_NAME}"; + luksDevice = "${DEVICE}3"; passwordFile = "/etc/nixos/password-hash.txt"; } |