homepage/flake.nix
GHOSCHT ce94e6fe48
All checks were successful
Homepage deployment / deploy (push) Successful in 23s
Add runner simulation
2025-01-07 21:25:57 +01:00

30 lines
730 B
Nix

{
description = "My homepage/blog";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems (system:
f {
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
});
in
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
hugo
go
opentofu
forgejo-runner
];
};
});
};
}