diff --git a/README.md b/README.md
index 4a2b981..a5106af 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,15 @@
+
+
# Docs
+[](https://gohugo.io)
+[](https://brainmade.org)
+[](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en)
+[](https://buymeacoffee.com/nicolabelluti)
+
+[](https://git.nicolabelluti.me/little-emulator/docs/actions/?workflow=build-and-publish.yaml)
+[](https://github.com/little-emulator)
+
+
+
+> Some documentation for the LC-2, LC-3 and LC-3b processors 📚
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000..62e1a48
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1735471104,
+ "narHash": "sha256-0q9NGQySwDQc7RhAV2ukfnu7Gxa5/ybJ2ANT8DQrQrs=",
+ "owner": "nixos",
+ "repo": "nixpkgs",
+ "rev": "88195a94f390381c6afcdaa933c2f6ff93959cb4",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nixos",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..da09ffc
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,21 @@
+{
+ description = "Hugo";
+
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+ };
+
+ outputs = { self, nixpkgs, ... }:
+ let
+ system = "x86_64-linux";
+ pkgs = nixpkgs.legacyPackages.${system};
+ in {
+ devShells.${system}.default = pkgs.mkShell {
+
+ buildInputs = with pkgs; [
+ hugo
+ ];
+
+ };
+ };
+}