29 lines
681 B
Nix
29 lines
681 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
|
||
|
opentofu
|
||
|
];
|
||
|
};
|
||
|
});
|
||
|
};
|
||
|
}
|