nixos-config/README.md
2024-12-02 01:03:01 +01:00

19 lines
271 B
Markdown

# Dotfiles
My NixOS configuration.
## Usage
Clone the repository to some directory. `/etc/nixos/git` in this example.
Set up `configuration.nix`:
```nix
{ ... }:
{
imports = [
./hardware-configuration.nix
./git/machines/[machine].nix
];
}
```