mirror of
https://gitlab.com/EternalWanderer/voidcruiser.nl
synced 2025-06-08 06:04:23 +02:00
Flake
This commit is contained in:
parent
27ac5fa2a0
commit
671a8a3dab
4 changed files with 78 additions and 0 deletions
15
flake.nix
Normal file
15
flake.nix
Normal 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 ];
|
||||
};
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue