diff --git a/README.md b/README.md
index f190139..1edd2bf 100644
--- a/README.md
+++ b/README.md
@@ -10,8 +10,8 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
-> **This project has a [Wiki](https://zaney.org/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.**
+> **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/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
- You must be running on NixOS.
@@ -38,7 +38,7 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
-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/).
@@ -60,7 +60,12 @@ Simply copy this and run it:
```
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:
@@ -74,7 +79,7 @@ nix-shell -p git vim
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
```
diff --git a/hosts/nixstation/hardware.nix b/hosts/nixstation/hardware.nix
index bfdac71..4ff6697 100644
--- a/hosts/nixstation/hardware.nix
+++ b/hosts/nixstation/hardware.nix
@@ -26,6 +26,12 @@
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 = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
diff --git a/install-zaneyos.sh b/install-zaneyos.sh
index b5925b3..b418dab 100755
--- a/install-zaneyos.sh
+++ b/install-zaneyos.sh
@@ -56,7 +56,7 @@ fi
echo "-----"
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
mkdir hosts/"$hostName"
cp hosts/default/*.nix hosts/"$hostName"