1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-10-18 00:16:11 -04:00

Compare commits

...

6 commits

Author SHA1 Message Date
Thomas Lloyd-Jones b7479b481a
Merge 3cf6a1324b into 1cd48008f0 2024-10-17 07:24:56 -04:00
Eelco Dolstra 1cd48008f0
Merge pull request #11710 from NixOS/doc-onboarding
maintainers/onboarding: Start documenting
2024-10-17 11:06:23 +02:00
Eelco Dolstra 2e2c7f3b14
Merge pull request #11709 from DeterminateSystems/remove-team-list
maintainers/README.md: Remove the list of team members
2024-10-17 11:05:55 +02:00
Robert Hensing c196011d23 maintainers/onboarding: Start documenting 2024-10-16 22:06:28 +02:00
Eelco Dolstra 7bd0c70b37 maintainers/README.md: Remove the list of team members
Let's have one canonical location for the team membership.
2024-10-16 22:03:44 +02:00
DynamicApproach 3cf6a1324b
Multi-User fail if already has /nix 2023-07-09 00:29:02 -04:00
3 changed files with 14 additions and 5 deletions

View file

@ -29,11 +29,7 @@ We aim to achieve this by improving the contributor experience and attracting mo
## Members ## Members
- Eelco Dolstra (@edolstra) Team lead See https://nixos.org/community/teams/nix/ for the current team membership.
- Valentin Gagarin (@fricklerhandwerk)
- Thomas Bereknyei (@tomberek)
- Robert Hensing (@roberth)
- John Ericson (@Ericson2314)
The team is on Github as [@NixOS/nix-team](https://github.com/orgs/NixOS/teams/nix-team). The team is on Github as [@NixOS/nix-team](https://github.com/orgs/NixOS/teams/nix-team).

View file

@ -0,0 +1,6 @@
# Onboarding a new team member
- https://github.com/NixOS/nixos-homepage/
- https://github.com/orgs/NixOS/teams/nix-team
- Matrix room

View file

@ -58,6 +58,7 @@ readonly EXTRACTED_NIX_PATH="$(dirname "$0")"
readonly ROOT_HOME=~root readonly ROOT_HOME=~root
if [ -t 0 ] && [ -z "${NIX_INSTALLER_YES:-}" ]; then if [ -t 0 ] && [ -z "${NIX_INSTALLER_YES:-}" ]; then
readonly IS_HEADLESS='no' readonly IS_HEADLESS='no'
else else
@ -96,6 +97,12 @@ is_os_darwin() {
fi fi
} }
if [ -d "/nix" ]; then
echo "$(tput setaf 1)Error: /nix already exists on your system.$(tput sgr0)"
echo "$(tput setaf 2)To remove it, you can use the following command: sudo rm -rf /nix$(tput sgr0)"
exit 1
fi
contact_us() { contact_us() {
echo "You can open an issue at" echo "You can open an issue at"
echo "https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md" echo "https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md"