about summary refs log tree commit diff stats
path: root/system/users
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-17 16:55:27 +0100
committerene <ene@sils.li>2023-02-17 16:58:01 +0100
commite687f1fa186040c7fc45e66d06499ed81855da81 (patch)
treeb25950a7d8ed2d817b9dab334b4e031f8f85d641 /system/users
parentFeat(services): Use default.nix files (diff)
downloadnixos-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 '')
-rw-r--r--system/users/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/users/default.nix b/system/users/default.nix
index 2c962c26..ca2fc352 100644
--- a/system/users/default.nix
+++ b/system/users/default.nix
@@ -7,7 +7,7 @@
     mutableUsers = false;
     users.soispha = {
       isNormalUser = true;
-      home = "/srv/home/soispha";
+      home = "/home/soispha";
       shell = pkgs.zsh;
       initialHashedPassword = "$y$jFT$ONrCqZIJKB7engmfA4orD/$0GO58/wV5wrYWj0cyONhyujZPjFmbT0XKtx2AvXLG0B";
       extraGroups = ["wheel"];