Updated the README.md and added the Nix Flake
All checks were successful
Build and Publish / build (push) Successful in 13s
All checks were successful
Build and Publish / build (push) Successful in 13s
This commit is contained in:
parent
fe9c5a0973
commit
3d6e1fdf6e
13
README.md
13
README.md
@ -1,2 +1,15 @@
|
||||
<div align="center">
|
||||
|
||||
# Docs
|
||||
|
||||
[](https://gohugo.io)
|
||||
[](https://brainmade.org)
|
||||
[](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en)
|
||||
[](https://buymeacoffee.com/nicolabelluti)
|
||||
<br>
|
||||
[](https://git.nicolabelluti.me/little-emulator/docs/actions/?workflow=build-and-publish.yaml)
|
||||
[](https://github.com/little-emulator)
|
||||
|
||||
</div><br>
|
||||
|
||||
> Some documentation for the LC-2, LC-3 and LC-3b processors 📚
|
||||
|
27
flake.lock
generated
Normal file
27
flake.lock
generated
Normal file
@ -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
|
||||
}
|
21
flake.nix
Normal file
21
flake.nix
Normal file
@ -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
|
||||
];
|
||||
|
||||
};
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user