summary refs log tree commit diff
path: root/configuration/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration/configuration.nix')
-rw-r--r--configuration/configuration.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/configuration/configuration.nix b/configuration/configuration.nix
index 3ddcca1..5f7d8bd 100644
--- a/configuration/configuration.nix
+++ b/configuration/configuration.nix
@@ -2,6 +2,7 @@
   config,
   lib,
   pkgs,
+  credentials,
   ...
 }:
 
@@ -26,13 +27,13 @@
     mel = {
       isNormalUser = true;
       extraGroups = [ "wheel" ];
-      hashedPassword = "$y$j9T$ieEl5QNLNw/WwPlo8ltbW0$gFxLCTnPgalTvyEbElxrhSH49wrAOUAdjdVjw1NLtsC";
+      hashedPassword = credentials.mel.password;
     };
 
     philip = {
       isNormalUser = true;
       extraGroups = [ "wheel" ];
-      hashedPassword = "$y$j9T$05voM5wlmF6HSrvOJ4Jtn1$fhAq/k2W6NYydFcwK/LiKGrRz/1NLM7MRUAGNrzy2e/";
+      hashedPassword = credentials.philip.password;
     };
   };