diff options
author | Alan Pearce | 2023-04-04 08:18:58 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-04 08:18:58 +0200 |
commit | 112eff24937ae4b2a688df73821c6d971ddc9cc7 (patch) | |
tree | 0412af1b389b38cfd302160161f4b1e12784a539 | |
parent | a1bdc17268f7587e6f359b3b00405df9fa6b41e7 (diff) | |
download | nixfiles-112eff24937ae4b2a688df73821c6d971ddc9cc7.tar.lz nixfiles-112eff24937ae4b2a688df73821c6d971ddc9cc7.tar.zst nixfiles-112eff24937ae4b2a688df73821c6d971ddc9cc7.zip |
mba: unify home directory with linux hosts
requires a line in /etc/synthetic.conf: home /System/Volumes/Data/Users/ in the Terminal, I set the shell startup command to export HOME=/home/alan;cd;clear
-rw-r--r-- | user/mba.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/mba.nix b/user/mba.nix index 5bbf2434..70408635 100644 --- a/user/mba.nix +++ b/user/mba.nix @@ -22,6 +22,6 @@ ]; home.username = "alan"; - home.homeDirectory = "/Users/alan"; + home.homeDirectory = "/home/alan"; home.stateVersion = "22.11"; } |