summaryrefslogtreecommitdiff
path: root/common.nix
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-01-11 18:34:57 +0100
committerChristoph Cullmann <cullmann@kde.org>2024-01-11 18:34:57 +0100
commit930f566943a9766cf7a2bc505c3168e6b030cfa4 (patch)
tree2c443b9e1659e9b9798592e896229913d861c428 /common.nix
parent4c63167e02f93ecb792960b25a23a1011b4f5e5f (diff)
Revert "Revert "Revert "fix paths back"""
This reverts commit 64b92b335a5ba4c125d1aeeeab1ee291305e09ad.
Diffstat (limited to 'common.nix')
-rw-r--r--common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.nix b/common.nix
index 9d97ed1..74c8661 100644
--- a/common.nix
+++ b/common.nix
@@ -450,10 +450,10 @@ in
users.users.root = {
# init password
- hashedPassword = builtins.readFile "/data/nixos/password.secret";
+ hashedPassword = builtins.readFile "/mnt/data/nixos/password.secret";
# use same keys as my main user
- openssh.authorizedKeys.keys = pkgs.lib.splitString "\n" (builtins.readFile "/home/cullmann/.ssh/authorized_keys");
+ # openssh.authorizedKeys.keys = pkgs.lib.splitString "\n" (builtins.readFile "/home/cullmann/.ssh/authorized_keys");
};
home-manager.users.root = {
@@ -482,7 +482,7 @@ in
extraGroups = [ "vboxusers" "wheel" ];
# init password
- hashedPassword = builtins.readFile "/data/nixos/password.secret";
+ hashedPassword = builtins.readFile "/mnt/data/nixos/password.secret";
};
home-manager.users.cullmann = {