aboutsummaryrefslogtreecommitdiff
path: root/public/nixos/template.nix
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-06-01 20:16:29 -0300
committerEuAndreh <eu@euandre.org>2019-06-01 20:16:29 -0300
commit07543eb8898a59ef9a6ffbc2e2b9605439c56d0a (patch)
treec60a3fa05165b292699a458282918ee75d3f47b7 /public/nixos/template.nix
parentUse /mnt as installation root (diff)
downloaddotfiles-07543eb8898a59ef9a6ffbc2e2b9605439c56d0a.tar.gz
dotfiles-07543eb8898a59ef9a6ffbc2e2b9605439c56d0a.tar.xz
Fix luksDevice interpolation in template.nix
Diffstat (limited to 'public/nixos/template.nix')
-rw-r--r--public/nixos/template.nix4
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";
}