blog/flake.nix
2026-01-31 07:38:02 +01:00

26 lines
737 B
Nix

{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: let
systems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
in {
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
zola
(writeShellScriptBin "serve" ''
zola serve --open
'')
(writeShellScriptBin "build" ''
zola build
'')
];
shellHook = ''
echo "Zola blog development environment"
echo "Commands: serve, build, zola"
'';
};
});
};
}