about summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home-manager/default.nix2
-rw-r--r--system/impermanence/default.nix2
-rw-r--r--system/users/default.nix2
3 files changed, 3 insertions, 3 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";
diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix
index dd0fa42e..2b314dc4 100644
--- a/system/impermanence/default.nix
+++ b/system/impermanence/default.nix
@@ -31,7 +31,7 @@
         }
       ];
       users.soispha = {
-        home = "/srv/home/soispha"; # TODO link this to ${config.users.users.soispha.homeDirectory}
+#home = "/srv/home/soispha"; # TODO link this to ${config.users.users.soispha.homeDirectory}
         directories = [
           ".local/share"
           ".cache"
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"];