diff --git a/common/motd.nix b/common/motd.nix index 7f4267d..99e3eed 100644 --- a/common/motd.nix +++ b/common/motd.nix @@ -1,12 +1,16 @@ { users.motd = '' -Welcome to wolfgirl.systems! +*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-* +Welcome to wolfgirl.systems! We are so glad to have you here. +!! Please read /etc/info for info about this host. !! Join our Matrix chat: #wolfgirlsgen:envs.net -Latest news -* Stella: Flakes now enabled -* Stella: Web hosting now available, contact an admin to enable -* Stella: ipv6 enabled -* Now supports fetching your ssh key from a url, contact an admin to configure +*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-* +Latest news: +* Flakes now enabled +* Web hosting now available, contact an admin to enable +* Now supports fetching your ssh key from a url, contact an admin * Nova: new UK GPU host! try nova.wolfgirl.systems +* Jude: new Kansas City host! try jude.wolfgirl.systems +*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-*-+-* ''; } diff --git a/hosts/info/jude b/hosts/info/jude new file mode 100644 index 0000000..519c8b6 --- /dev/null +++ b/hosts/info/jude @@ -0,0 +1,16 @@ +Server sponsored by https://www.andrewnet.net/ at Kansas City + +No user in the andrewnet Kansas City region shall do the following. +1. DDoS/DoS Attacks +2. Hacking/Cracking of any kind +3. Spamming, Including but not limited to, eMail spam/mass mailing, web spam, + ping flood, etc +4. Interstate Gambling or Pyramid Schemes +5. Transmission, Storage, or Distribution of any Adult Content, Sexually + Explicit Services, hacker programs, and copyrighted materials(except if you + are the copyright owner, or you have a license that permits what you are doing). +6. Sale of a controlled substance or other online pharmacies, and weapons. +7. Harassment or advocacy of violence against a specific person or class of people +8. Anything that violates the laws that governs Kansas City, Missouri. +9. Tor +10. Anything to damage my IP Reputation diff --git a/hosts/info/nova b/hosts/info/nova new file mode 100644 index 0000000..775e73c --- /dev/null +++ b/hosts/info/nova @@ -0,0 +1,42 @@ +Server sponsored by ezri.cloud at interxion london, hosted by Inferno +Communications via Langauge Cloud. + +Lagrange AUP - https://lagrange.cloud/legal/terms_of_service.pdf 2.1 +You will not use the compute services for any of the following activities: +• Illegal Activities: Any activity that violates local, national, or international laws, +including but not limited to hacking, distribution of illegal content, fraud, and +unauthorized access to systems. +• Spam and Phishing: Sending unsolicited emails, spam, or engaging in +phishing activities to deceive users and collect sensitive information. +• Malware Distribution: Hosting, distributing, or knowingly spreading malicious +software, viruses, worms, Trojans, or any harmful code. +• DDoS Attacks: Launching Distributed Denial of Service (DDoS) attacks or any +other activities that attempt to overload or disrupt networks or services. +• Copyright Infringement: Hosting or distributing copyrighted material without +proper authorization, such as unauthorized distribution of movies, music, +software, or other intellectual property. +• Resource Abuse: Consistently using an excessive amount of resources (CPU, +memory, bandwidth) that negatively impacts the performance of other users. +• Mining: Cryptocurrency mining without proper authorization, as it can +significantly strain system resources. +• Proxy Services: Providing open proxy services without appropriate security +measures can potentially lead to abuse of your server for malicious activities. +• Network Scanning: Engaging in unauthorized scanning of networks, ports, or +systems, which can be seen as a precursor to hacking attempts. +• Impersonation: Impersonating someone else, forging email headers, or any +activity aimed at deceiving users or systems. +• Child Exploitation: Any activity related to child pornography, exploitation, or +abuse is strictly prohibited. +• Harassment or Hate Speech: Engaging in online harassment, hate speech, or +activities that promote discrimination, racism, or violence. +• Pharmacy and Illegal Substances: Any activity promoting the sale or +distribution of prescription medications, illegal drugs, or controlled +substances. +• Gambling: Hosting or facilitating online gambling or betting activities without +proper legal authorization. +• Sensitive Data Exposure: Storing or transmitting sensitive personal, financial, +or confidential information without proper encryption and security measures. +• Bulk Mailing: Sending large volumes of emails without proper opt-in +mechanisms or unsubscribe options. +• Excessive Bot Activity: Running malicious bots or bots that perform actions in +violation of terms of service on other platforms. diff --git a/hosts/info/stella b/hosts/info/stella new file mode 100644 index 0000000..3f327a4 --- /dev/null +++ b/hosts/info/stella @@ -0,0 +1,14 @@ +Server sponsored by ezri.cloud in New York City. + +No EzriCloud user in the NYC region shall do the following. +1. DDoS/DoS Attacks +2. Hacking/Cracking of any kind +3. Spamming, Including but not limited to, eMail spam/mass mailing, web spam, + ping flood, etc +4. Interstate Gambling or Pyramid Schemes +5. Transmission, Storage, or Distribution of any Adult Content, Sexually + Explicit Services, hacker programs, and copyrighted materials(except if you + are the copyright owner, or you have a license that permits what you are doing). +6. Sale of a controlled substance or other online pharmacies, and weapons. +7. Harassment or advocacy of violence against a specific person or class of people +8. Anything that violates the laws that governs New York City. diff --git a/hosts/jude.nix b/hosts/jude.nix index aa9cb75..e99778e 100644 --- a/hosts/jude.nix +++ b/hosts/jude.nix @@ -48,6 +48,11 @@ }; }; + environment.etc."info" = { + mode = "0644"; + text = builtins.readFile ./info/jude; + }; + swapDevices = [ { device = "/swapfile"; size = 4*1024; diff --git a/hosts/nova.nix b/hosts/nova.nix index 794fb98..c3ad0f8 100644 --- a/hosts/nova.nix +++ b/hosts/nova.nix @@ -47,6 +47,11 @@ size = 4*1024; randomEncryption.enable = true; }]; - + + environment.etc."info" = { + mode = "0644"; + text = builtins.readFile ./info/nova; + }; + system.stateVersion = "24.05"; } diff --git a/hosts/stella.nix b/hosts/stella.nix index 96e2fbc..9427bcf 100644 --- a/hosts/stella.nix +++ b/hosts/stella.nix @@ -57,6 +57,11 @@ size = 4*1024; randomEncryption.enable = true; }]; - + + environment.etc."info" = { + mode = "0644"; + text = builtins.readFile ./info/stella; + }; + system.stateVersion = "23.05"; }