diff options
author | Alan Pearce | 2023-03-13 16:23:07 +0100 |
---|---|---|
committer | Alan Pearce | 2023-03-13 16:24:04 +0100 |
commit | f0f6203f1ee9f591630aac80f4292ce39a28c104 (patch) | |
tree | fb6808897a062fb472d655bb9633f213bd104fa9 /user | |
parent | e499d602b238bbe2018e8bb9bec867d59b7eb2d6 (diff) | |
download | nixfiles-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
Diffstat (limited to 'user')
-rw-r--r-- | user/server.nix | 2 |
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"; }; } |