diff options
| author | ene <ene@sils.li> | 2023-02-21 17:51:39 +0100 | 
|---|---|---|
| committer | ene <ene@sils.li> | 2023-02-21 17:51:39 +0100 | 
| commit | 007e4b706762ef925b058d15ff3e12bc8ccf4574 (patch) | |
| tree | f2df3c16558eb20104927bb73f829426102c73c8 /system/users/default.nix | |
| parent | Fix(home): permissions (hopefully) (diff) | |
| download | nixos-config-007e4b706762ef925b058d15ff3e12bc8ccf4574.zip | |
Fix(system): Remove extra tempfs
This was overmounting the /home directory, so generated user homes where deleted
Diffstat (limited to 'system/users/default.nix')
| -rw-r--r-- | system/users/default.nix | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/system/users/default.nix b/system/users/default.nix index 8efece26..e96e2f37 100644 --- a/system/users/default.nix +++ b/system/users/default.nix @@ -29,12 +29,12 @@ in { uid = 1000; }; }; - system.activationScripts.home_permissions = - pkgs.lib.stringAfter ["users"] - '' - mkdir /home/soispha - chmod 700 /home/soispha - chown -hR soispha:users /home/soispha - ''; +# system.activationScripts.home_permissions = +# pkgs.lib.stringAfter ["users"] +# '' +# mkdir /home/soispha +# chmod 700 /home/soispha +# chown -hR soispha:users /home/soispha +# ''; }; } | 
