Merge branch 'main' of gitlab:EternalWanderer/voidcruiser.nl

This commit is contained in:
Nox Sluijtman 2024-02-03 15:01:02 +01:00
commit 5dd9c337c7
3 changed files with 4 additions and 6 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
.hugo_build.lock
public
voidcruiser.nl
.direnv

View file

@ -1,7 +1,7 @@
{ description = "Website flake";
inputs = {
nixpkgs.url = github:NixOs/nixpkgs/nixos-23.05;
flake-utils.url = github:numtide/flake-utils;
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:
@ -26,11 +26,7 @@
cp -r public $out/share/${pname}
'';
};
};
devShell = pkgs.mkShell {
buildInputs = [ pkgs.hugo ];
};
});
}