summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2023-03-13 16:23:07 +0100
committerAlan Pearce2023-03-13 16:24:04 +0100
commitf0f6203f1ee9f591630aac80f4292ce39a28c104 (patch)
treefb6808897a062fb472d655bb9633f213bd104fa9
parente499d602b238bbe2018e8bb9bec867d59b7eb2d6 (diff)
downloadnixfiles-f0f6203f1ee9f591630aac80f4292ce39a28c104.tar.lz
nixfiles-f0f6203f1ee9f591630aac80f4292ce39a28c104.tar.zst
nixfiles-f0f6203f1ee9f591630aac80f4292ce39a28c104.zip
server: use standard homeDirectory
I can fix this on non-standard machines with a symlink, bind-mount or
per-host configuration in flake.nix
-rw-r--r--user/server.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/server.nix b/user/server.nix
index 7a2f0cc9..61ef71e8 100644
--- a/user/server.nix
+++ b/user/server.nix
@@ -16,7 +16,7 @@ with lib; {
   home = {
     username = "alan";
     sessionVariables.EDITOR = "${config.programs.neovim.finalPackage}/bin/nvim";
-    homeDirectory = "/mnt/internal/home/alan";
+    homeDirectory = "/home/alan";
     stateVersion = "22.11";
   };
 }