diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 11:07:29 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 11:07:29 +0100 |
commit | 0cc815efb58572c9294a271293de815f2c711ed8 (patch) | |
tree | 1624bf357e173856e2268eda170adaaef350664c /README.md | |
parent | 0c5741393695fcc99bd79dfc8235d9395204f523 (diff) |
import initial NixOS module; also README.md for installation
Diffstat (limited to '')
-rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..314ab0f --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Eth's Misc Nix Mix + +```sh +$ cat /etc/nixos/configuration.nix +{ config, pkgs, ... }: + +let + ethNix = import /home/eth/src/nix; +{ + imports = [ + ./hardware-configuration.nix + ethNix.modules + ]; + + eth.keyboard.enable = true; +} +``` |