nix-config-v2/README.md

69 lines
1.6 KiB
Markdown
Raw Normal View History

2024-07-29 23:09:42 -05:00
# Wyatt's Nix configuration
Designed and developed by Wyatt J. Miller, 2024
2024-10-30 22:35:48 -05:00
Licensed by the Mozilla Public License v2
## What is this??
This repository is my multi-machine Nix configuration, written in a Nix flake!
## How do I get this?
Make sure the following is installed:
- `git` (most operating systems come with git already installed)
- `nix` (if you are on macOS or a non-NixOS system)
If you don't have `git` installed and are running macOS, run the following command:
```bash
2024-11-17 17:21:00 -06:00
sudo xcode-select --install
2024-10-30 22:35:48 -05:00
```
If you don't have `nix` installed and are running Linux, use the Determinate Nix Installer!
```bash
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```
If you don't have `nix` installed and are running macOS, use the Determinate Nix Installer!
```bash
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```
2024-10-30 22:37:13 -05:00
There's a separate installer Determinate Systems releases (and feel free to try it) but that's not on the install list here.
2024-10-30 22:35:48 -05:00
2024-10-30 22:45:47 -05:00
Once you got everything required, it's clonin' time!
```bash
git clone https://scm.wyattjmiller.com/wymiller/nix-config-v2
```
Once that's done, head to the next section.
2024-10-30 22:35:48 -05:00
## How do I run this?
For NixOS systems:
```bash
sudo nixos-rebuild switch --flake .#<hostname>
```
For macOS systems:
```bash
nix run nix-darwin --extra-experimental-features nix-command --extra-experimental-features flakes -- switch --flake .#<hostname>
```
2024-11-17 17:21:00 -06:00
_or_
```bash
darwin-rebuild switch --flake .#<hostname>
```
2024-10-30 22:35:48 -05:00
where `<hostname>` is the particular configuration you would like to run.
Non-NixOS Linux systems should be coming soon!