{ 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 ]; }; }); }