summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-09-27 18:47:44 +0200
committerMike Vink <mike1994vink@gmail.com>2023-09-27 18:47:44 +0200
commitf38d4b768d51cbe70a8bd1a56584d6202b57556f (patch)
tree1576f78e29fc60517a6bb2acfa9192977beca7d0 /flake.nix
hugo initmain
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..837bc2c
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,26 @@
+{
+ inputs = {
+ nixpkgs.url = "nixpkgs";
+ nix-filter.url = "github:numtide/nix-filter";
+ flake-utils.url = "github:numtide/flake-utils";
+ };
+ outputs = {
+ self,
+ flake-utils,
+ ...
+ } @ inputs:
+ flake-utils.lib.eachDefaultSystem (system: let
+ pkgs =
+ import inputs.nixpkgs
+ {
+ inherit system;
+ };
+ in {
+ devShells.default = pkgs.mkShell {
+ name = "www.vinkland.xyz";
+ buildInputs = [
+ pkgs.hugo
+ ];
+ };
+ });
+}