Flake and nixvim

This commit is contained in:
Nox Sluijtman 2024-02-03 15:00:06 +01:00
parent 27ac5fa2a0
commit ee94eadb12
3 changed files with 134 additions and 0 deletions

36
flake.nix Normal file
View file

@ -0,0 +1,36 @@
{ 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 {
packages = {
default = pkgs.stdenvNoCC.mkDerivation rec {
pname = "voidcruiser";
version = "1.3";
src = ./.;
buildInputs = [ pkgs.hugo ];
buildPhase = ''
hugo
'';
installPhase = ''
mkdir -p $out/share/
cp -r public $out/share/${pname}
'';
};
};
devShell = pkgs.mkShell {
buildInputs = [ pkgs.hugo ];
};
});
}