Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuvashankar/nix-config
My personal nixOS configurations,
https://github.com/yuvashankar/nix-config
nixos nixos-configuration
Last synced: 3 months ago
JSON representation
My personal nixOS configurations,
- Host: GitHub
- URL: https://github.com/yuvashankar/nix-config
- Owner: yuvashankar
- License: gpl-3.0
- Created: 2024-07-21T11:41:11.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-20T13:17:49.000Z (4 months ago)
- Last Synced: 2024-09-28T09:02:09.564Z (3 months ago)
- Topics: nixos, nixos-configuration
- Language: Nix
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nix-configs
A repository containing the nix configuraions for my personal computer. Derived from the [nix-starter-configs](https://github.com/Misterio77/nix-starter-configs).
* AMD 3600 XT 8-core CPU
* nVidia 2080 Super# Personal Notes
Build new nixOS release```bash
# Find any warnings
nix flake check
# Nix flake buid
nixos-rebuild build --flake .#overkill
# Finally, switch to the new system
sudo nixos-rebuild switch --flake .#overkill
```Update home-manager flake
```bash
# May need to get home-manager first
nix shell nixpkgs#home-manager
home-manager switch --flake .#yuvashankar@overkill
```Clean up old nix versions
```bash
sudo nix-collect-garbage --delete-older-than 15d
```