Add DRY CI post

This commit is contained in:
Greg Hellings
2024-04-22 01:38:32 -05:00
parent 35aaff7819
commit 45efd643e9
6 changed files with 143 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
nativeBuildInputs = [
pkgs.bashInteractive
pkgs.hugo
];
buildInputs = [ ];
};
});
}