diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -26,11 +26,11 @@ rec { username = "timmy"; email = "tjkeller.xyz"; fullname = "Tim Keller"; - home = with userDetails; with home; { - root = "/home/${username}"; - downloads = "${root}/dls"; - documents = "${root}/docs"; - pictures = "${root}/pics"; + home = "/home/${userDetails.username}"; + userDirs = with userDetails; { + download = "${home}/dls"; + documents = "${home}/docs"; + pictures = "${home}/pics"; }; }; homeStateVersion = "24.05"; # Lowest of systems is fine |