From 792181fe1d04fe83612664bdd38425907fe4a63b Mon Sep 17 00:00:00 2001 From: "thomas g. lopes" Date: Mon, 9 Mar 2026 11:11:13 +0000 Subject: [PATCH] add readme --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5df6d0c --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# nixos-config + +NixOS configuration using a dendritic structure — `flake.nix` at the root, with modules branching out under `modules/`. + +``` +. +├── flake.nix +├── hardware-configuration.nix +└── modules/ + ├── browsers.nix + ├── gaming.nix + ├── packages.nix + ├── shell.nix + ├── ui.nix + └── ... +``` + +## Usage + +```bash +sudo nixos-rebuild switch --flake . +```