mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
38 lines
867 B
Markdown
38 lines
867 B
Markdown
# NixOS Configuration files.
|
|
|
|
## Deploying
|
|
|
|
Setup disks, mount root to `/mnt` and `/boot` to `/mnt/boot` and run something like this
|
|
|
|
```shell
|
|
git clone https://github.com/ivabus/nixos /mnt/etc/nixos
|
|
nixos-generate-config --show-hardware-config --root /mnt > /mnt/etc/nixos/machines/host/hardware.nix
|
|
nixos-install --flake path:.#host
|
|
```
|
|
|
|
## Rebuilding
|
|
|
|
```shell
|
|
nixos-rebuild switch --flake path:/etc/nixos
|
|
```
|
|
|
|
Apple Silicon hosts require additional `--impure` flag for firmware installation. (Firmware should be placed in /etc/nixos/asahi/firmware (ignored by git)).
|
|
|
|
### Hosts configured
|
|
|
|
- stella (Random Ryzen 3 3250U laptop)
|
|
- vetus (iMac 27" 2017)
|
|
- celerrime (MacBook Air M2)
|
|
|
|
## Shells
|
|
|
|
I "made" some shell in [shells/](./shells).
|
|
|
|
## Dotfiles (from `ivabus/dotfiles`)
|
|
|
|
I install my dotfiles with prepared script
|
|
|
|
```shell
|
|
curl https://iva.bz/nix | sh
|
|
```
|