2024-07-18 04:08:27 +00:00
|
|
|
# Dotfiles
|
2024-06-24 16:06:35 +00:00
|
|
|
|
2024-12-02 00:03:01 +00:00
|
|
|
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
|
|
|
|
];
|
|
|
|
}
|
|
|
|
```
|