https://github.com/c0d3h01/nix-config
Declarative - NixOS flake configurations
https://github.com/c0d3h01/nix-config
dotfiles flake nix nixos nixos-configuration
Last synced: about 1 month ago
JSON representation
Declarative - NixOS flake configurations
- Host: GitHub
- URL: https://github.com/c0d3h01/nix-config
- Owner: c0d3h01
- License: mit
- Created: 2025-02-26T17:21:41.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-11T10:38:01.000Z (about 2 months ago)
- Last Synced: 2026-01-11T15:30:49.902Z (about 2 months ago)
- Topics: dotfiles, flake, nix, nixos, nixos-configuration
- Language: Nix
- Homepage:
- Size: 65.5 MB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Installation
## Apply Home Manager Configuration
```bash
# Run Home Manager switch configs
$> nix run github:nix-community/home-manager -- switch \
--flake 'github:c0d3h01/nix-config#harshal@firuslab'
```
---
## NixOS Clean User Installation
```bash
# Partition and format disk with Disko
$> sudo nix --experimental-features "nix-command flakes" run \
github:nix-community/disko/latest -- \
--mode destroy,format,mount \
--yes-wipe-all-disks \
--flake github:c0d3h01/nix-config#laptop
# Install NixOS
$> sudo nixos-install --flake github:c0d3h01/nix-config#laptop \
--no-root-passwd
```