blob: 3abc877683bd8eeb9e2edde04066f922c757c4e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Configuration Files for NixOS
This is my system configuration, targeting workstations.
It's intended to be private while not containing sensitive information.
To use, clone Repository in `/etc/nix-config` and put the following in
`/etc/nixos/configuration.nix`:
```nix
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
/etc/nix-config/config.nix
];
system.stateVersion = "<intital stateVersion from nixos-generate-config>";
}
```
|