Initial commit; Add flake.nix
This commit is contained in:
commit
8994ed707b
20
flake.nix
Normal file
20
flake.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
description = "My personal website content and configuration";
|
||||
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
packages.website = pkgs.stdenv.mkDerivation {
|
||||
name = "homesite";
|
||||
src = self;
|
||||
buildPhase = "${pkgs.hugo}/bin/hugo";
|
||||
installPhase = "cp -r public $out";
|
||||
};
|
||||
|
||||
defaultPackage = self.packages.${system}.website;
|
||||
devShells.default = pkgs.mkShell { packages = [ pkgs.hugo ]; };
|
||||
});
|
||||
}
|
Reference in a new issue