2022-07-20 15:50:04 +00:00
|
|
|
This repository contains configuration files for my NixOS, macOS, and WSL
|
|
|
|
hosts.
|
|
|
|
|
2022-09-23 18:35:14 +00:00
|
|
|
They are organized and managed by [Nix](https://nixos.org), so some of the
|
|
|
|
configuration may be difficult to translate to a non-Nix system.
|
|
|
|
|
|
|
|
However, some of the configurations are easier to lift directly:
|
|
|
|
|
2022-11-30 03:48:46 +00:00
|
|
|
- [Neovim](https://github.com/nmasur/dotfiles/tree/master/modules/neovim/config)
|
2022-09-23 18:35:14 +00:00
|
|
|
- [Fish functions](https://github.com/nmasur/dotfiles/tree/master/modules/shell/fish/functions)
|
|
|
|
- [More fish aliases](https://github.com/nmasur/dotfiles/blob/master/modules/shell/fish/default.nix)
|
|
|
|
- [Git aliases](https://github.com/nmasur/dotfiles/blob/master/modules/shell/git.nix)
|
|
|
|
- [Hammerspoon](https://github.com/nmasur/dotfiles/tree/master/modules/darwin/hammerspoon)
|
|
|
|
|
2022-11-30 03:48:46 +00:00
|
|
|
Try out my Neovim config:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
nix run github:nmasur/dotfiles#neovim
|
|
|
|
```
|
|
|
|
|
|
|
|
Or build it as a package:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
nix build github:nmasur/dotfiles#neovim
|
|
|
|
```
|
|
|
|
|
2022-07-20 15:50:04 +00:00
|
|
|
---
|
|
|
|
|
2022-07-27 23:13:41 +00:00
|
|
|
# Installation
|
|
|
|
|
2022-07-20 15:50:04 +00:00
|
|
|
## NixOS - From Live Disk
|
|
|
|
|
|
|
|
Format drives and build system from any NixOS host, including the live
|
|
|
|
installer disk:
|
|
|
|
|
|
|
|
**This will erase your drives; use at your own risk!**
|
|
|
|
|
|
|
|
```bash
|
|
|
|
lsblk # Choose the disk you want to wipe
|
2022-10-01 21:42:33 +00:00
|
|
|
nix-shell -p nixVersions.stable
|
2022-07-20 15:50:04 +00:00
|
|
|
nix run github:nmasur/dotfiles#installer -- nvme0n1 desktop
|
|
|
|
```
|
|
|
|
|
|
|
|
## NixOS - From Existing System
|
|
|
|
|
|
|
|
If you're already running NixOS, you can switch to this configuration with the
|
|
|
|
following command:
|
|
|
|
|
|
|
|
```bash
|
2022-10-01 21:42:33 +00:00
|
|
|
nix-shell -p nixVersions.stable
|
2022-07-20 15:50:04 +00:00
|
|
|
sudo nixos-rebuild switch --flake github:nmasur/dotfiles#desktop
|
|
|
|
```
|
|
|
|
|
|
|
|
## Windows - From NixOS WSL
|
|
|
|
|
|
|
|
After [installing NixOS on
|
|
|
|
WSL](https://xeiaso.net/blog/nix-flakes-4-wsl-2022-05-01), you can switch to
|
|
|
|
the WSL configuration:
|
|
|
|
|
|
|
|
```
|
2022-10-01 21:42:33 +00:00
|
|
|
nix-shell -p nixVersions.stable
|
2022-07-20 15:50:04 +00:00
|
|
|
sudo nixos-rebuild switch --flake github:nmasur/dotfiles#wsl
|
|
|
|
```
|
|
|
|
|
2022-09-24 01:54:28 +00:00
|
|
|
You should also download the
|
|
|
|
[FiraCode](https://github.com/ryanoasis/nerd-fonts/releases/download/v2.2.2/FiraCode.zip)
|
|
|
|
font and install it on Windows. Install [Alacritty](https://alacritty.org/) and
|
|
|
|
move the `windows/alacritty.yml` file to
|
|
|
|
`C:\Users\<user>\AppData\Roaming\alacritty`.
|
|
|
|
|
2022-07-20 15:50:04 +00:00
|
|
|
## macOS
|
|
|
|
|
|
|
|
To get started on a bare macOS installation, first install Nix:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sh -c "$(curl -L https://nixos.org/nix/install)"
|
|
|
|
```
|
|
|
|
|
|
|
|
Then use Nix to build nix-darwin:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
nix-build https://github.com/LnL7/nix-darwin/archive/master.tar.gz -A installer
|
|
|
|
./result/bin/darwin-installer
|
|
|
|
```
|
|
|
|
|
|
|
|
Then switch to the macOS configuration:
|
|
|
|
|
|
|
|
```bash
|
2022-07-27 23:13:41 +00:00
|
|
|
darwin-rebuild switch --flake github:nmasur/dotfiles#macbook
|
2022-07-20 15:50:04 +00:00
|
|
|
```
|
|
|
|
|
2022-07-27 01:11:07 +00:00
|
|
|
### Dealing with corporate MITM SSL certificates:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Get the certificates
|
|
|
|
openssl s_client -showcerts -verify 5 -connect cache.nixos.org:443 < /dev/null
|
|
|
|
|
|
|
|
# Paste them in here
|
|
|
|
sudo nvim $NIX_SSL_CERT_FILE
|
|
|
|
```
|
|
|
|
|
2022-07-27 23:13:41 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Flake Templates
|
2022-07-20 15:50:04 +00:00
|
|
|
|
2022-07-27 23:13:41 +00:00
|
|
|
You can also use the [templates](./templates/) as flakes for starting new
|
|
|
|
projects:
|
2022-07-20 15:50:04 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
nix flake init --template github:nmasur/dotfiles#poetry
|
|
|
|
```
|