This commit is contained in:
Nox Sluijtman 2023-10-12 23:05:31 +02:00
parent 27ac5fa2a0
commit 671a8a3dab
4 changed files with 78 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{ description = "Website flake";
inputs = {
nixpkgs.url = github:NixOs/nixpkgs/nixos-23.05;
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.mkShell {
buildInputs = [ pkgs.hugo ];
};
});
}