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