From 10795384646dfb8326c1a15cc38674b52da7ccc1 Mon Sep 17 00:00:00 2001
From: Jens Nolte <jens@nightmarestudio.de>
Date: Thu, 7 Nov 2019 01:57:24 +0100
Subject: [PATCH] Move password hash location

---
 nixos/layers/base.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nixos/layers/base.nix b/nixos/layers/base.nix
index 394482f..4ea3c9f 100644
--- a/nixos/layers/base.nix
+++ b/nixos/layers/base.nix
@@ -59,12 +59,12 @@
     mutableUsers = false;
     defaultUserShell = pkgs.zsh;
     users.root = {
-      passwordFile = "/q/passwords/root";
+      passwordFile = "/secrets/passwords/root";
     };
     users.jens = {
       uid = 1000;
       isNormalUser = true;
-      passwordFile = "/q/passwords/jens";
+      passwordFile = "/secrets/passwords/jens";
       extraGroups = [ "wheel" "audio" ];
     };
   };
-- 
GitLab