23 lines
432 B
Markdown
23 lines
432 B
Markdown
# nixos-config
|
|
|
|
NixOS configuration using a dendritic structure — `flake.nix` at the root, with modules branching out under `modules/`.
|
|
|
|
```
|
|
.
|
|
├── flake.nix
|
|
├── hardware-configuration.nix
|
|
└── modules/
|
|
├── browsers.nix
|
|
├── gaming.nix
|
|
├── packages.nix
|
|
├── shell.nix
|
|
├── ui.nix
|
|
└── ...
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
sudo nixos-rebuild switch --flake .#nixos
|
|
```
|