mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
Update README & Make things ready for stable 2.2 branch
This commit is contained in:
parent
5068dbdf48
commit
96e62a6399
15
README.md
15
README.md
@ -10,8 +10,8 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
|
||||
|
||||
</div>
|
||||
|
||||
> **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
|
||||
|
||||
<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>
|
||||
|
||||
@ -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
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user