Update README & Make things ready for stable 2.2 branch

This commit is contained in:
Tyler Kelley 2025-01-30 01:00:01 -06:00
parent 5068dbdf48
commit 96e62a6399
3 changed files with 17 additions and 6 deletions

View File

@ -10,8 +10,8 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
</div> </div>
> **This project has a [Wiki](https://zaney.org/zaneyos-2.2/). Find out how to use ZaneyOS here!** > **This project has a [Wiki](https://zaney.org/wiki/zaneyos-2.2/). Find out how to use ZaneyOS here!**
> **I have put a lot of effort into the [documentation](https://zaney.org/zaneyos-2.2/) so it should be accurate. However, please if you notice that something is wrong with it create an issue or reach out to me on Discord.** > **I have put a lot of effort into the [documentation](https://zaney.org/wiki/zaneyos-2.2/) so it should be accurate. However, please if you notice that something is wrong with it create an issue or reach out to me on Discord.**
#### 🍖 Requirements #### 🍖 Requirements
- You must be running on NixOS. - You must be running on NixOS.
@ -38,7 +38,7 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
<div align="center"> <div align="center">
Please do yourself a favor and [read the wiki](https://zaney.org/zaneyos-2.2/). Please do yourself a favor and [read the wiki](https://zaney.org/wiki/zaneyos-2.2/).
</div> </div>
@ -60,7 +60,12 @@ Simply copy this and run it:
``` ```
nix-shell -p git curl nix-shell -p git curl
sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh) ```
Then:
```
sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/stable-2.2/install-zaneyos.sh)
``` ```
#### 🦽 Manual: #### 🦽 Manual:
@ -74,7 +79,7 @@ nix-shell -p git vim
Clone this repo & enter it: Clone this repo & enter it:
``` ```
git clone https://gitlab.com/zaney/zaneyos.git git clone -b stable-2.2 --single-branch https://gitlab.com/zaney/zaneyos.git
cd zaneyos cd zaneyos
``` ```

View File

@ -26,6 +26,12 @@
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
fileSystems."/home/zaney/BFD" =
{ device = "/dev/disk/by-uuid/5A30E2CC30E2AE67";
fsType = "ntfs";
options = [ "defaults" "umask=000" "dmask=027" "fmask=137" "uid=1000" "gid=1000" "windows_names" ];
};
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View File

@ -56,7 +56,7 @@ fi
echo "-----" echo "-----"
echo "Cloning & Entering ZaneyOS Repository" echo "Cloning & Entering ZaneyOS Repository"
git clone https://gitlab.com/zaney/zaneyos.git git clone -b stable-2.2 --single-branch https://gitlab.com/zaney/zaneyos.git
cd zaneyos || exit cd zaneyos || exit
mkdir hosts/"$hostName" mkdir hosts/"$hostName"
cp hosts/default/*.nix hosts/"$hostName" cp hosts/default/*.nix hosts/"$hostName"