diff options
author | ene <ene@sils.li> | 2023-02-17 16:55:27 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-17 16:58:01 +0100 |
commit | e687f1fa186040c7fc45e66d06499ed81855da81 (patch) | |
tree | b25950a7d8ed2d817b9dab334b4e031f8f85d641 /home-manager/default.nix | |
parent | Feat(services): Use default.nix files (diff) | |
download | nixos-config-e687f1fa186040c7fc45e66d06499ed81855da81.tar.gz nixos-config-e687f1fa186040c7fc45e66d06499ed81855da81.zip |
Fix(users): Change home of soispha to /home/soispha
This puts the home directory in the tempfs part of the filesystem, so all, not explicitly specified directories, will be restored upon reboot.
Diffstat (limited to 'home-manager/default.nix')
-rw-r--r-- | home-manager/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home-manager/default.nix b/home-manager/default.nix index 82e6927d..3edfd682 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -10,7 +10,7 @@ }: let # TODO actually use this in the user config username = "soispha"; - homeDirectory = "/srv/home/${username}"; + homeDirectory = "/home/${username}"; configHome = "${homeDirectory}/.config"; dataHome = "${homeDirectory}/.local/share"; |