From 992f8b23acb0ea0f5f7e033165f2ff2c2d7d0234 Mon Sep 17 00:00:00 2001 From: dadada Date: Sat, 17 Oct 2020 13:11:32 +0200 Subject: [PATCH] Add README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..be53de3 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# nixpkgs configuration + +This repository contains nix modules, overlays and packages for my home and work setups. + +It requires [home-manager](https://github.com/nix-community/home-manager) to be set up and available in your path. Private parts of the configuration are not part of the repo. I include them from `home.nix` like so: + +```nix +{ + imports = [ + ./modules/profiles/gorgon.nix + ./private/metis + ]; +} +```