lol

Create /home with the right permissions

Without this, it will be created with 700 permissions.

+3 -2
+3 -2
nixos/modules/config/users-groups.nix
··· 529 530 system.activationScripts.users = stringAfter [ "stdio" ] 531 '' 532 ${pkgs.perl}/bin/perl -w \ 533 -I${pkgs.perlPackages.FileSlurp}/lib/perl5/site_perl \ 534 -I${pkgs.perlPackages.JSON}/lib/perl5/site_perl \ 535 ${./update-users-groups.pl} ${spec} 536 - 537 - install -m 0700 -d /root 538 ''; 539 540 # for backwards compatibility
··· 529 530 system.activationScripts.users = stringAfter [ "stdio" ] 531 '' 532 + install -m 0700 -d /root 533 + install -m 0755 -d /home 534 + 535 ${pkgs.perl}/bin/perl -w \ 536 -I${pkgs.perlPackages.FileSlurp}/lib/perl5/site_perl \ 537 -I${pkgs.perlPackages.JSON}/lib/perl5/site_perl \ 538 ${./update-users-groups.pl} ${spec} 539 ''; 540 541 # for backwards compatibility