alejandrogs.es/flake.nix
alejandrogs73 57e36978f6
Some checks are pending
Zola / build-and-deploy (push) Waiting to run
Initial commit
2025-12-14 00:46:02 +01:00

25 lines
479 B
Nix

{
description = "Entorno de desarrollo para AlejandroGS.es (Zola)";
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; [
zola
git
];
shellHook = ''
echo "Zola"
'';
};
};
}