Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darichey/my-nix-config
My system configuration
https://github.com/darichey/my-nix-config
Last synced: 22 days ago
JSON representation
My system configuration
- Host: GitHub
- URL: https://github.com/darichey/my-nix-config
- Owner: darichey
- Created: 2022-02-01T09:38:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T02:47:53.000Z (6 months ago)
- Last Synced: 2024-05-22T03:40:43.554Z (6 months ago)
- Language: Nix
- Homepage:
- Size: 1.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# my-nix-config
My NixOS configuration. Not meant for use by anyone else except as a learning resource.This configuration was based on Wil T's excellent [NixOS introduction series](https://www.youtube.com/watch?v=QKoQ1gKJY5A&list=PL-saUBvIJzOkjAw_vOac75v-x6EzNzZq-).
## Scripts
These mostly exist just so I don't forget the commands...Update flake inputs:
```sh
./scripts/update.sh
```Apply changes to system:
```sh
./scripts/apply.sh
```## Recurring issues
### /boot out of space
The /boot partition on my desktop is woefully small and sometimes runs out of space when applying the configuration. I have found that this can be fixed by a combination of...* `sudo rm -r /boot/kernels`
* `sudo nix-env -p /nix/var/nix/profiles/system --delete-generations +2`Also of note: if something goes wrong, pass `--install-bootloader` to `nixos-rebuild` to reinstall the bootloader.