{ description = "Greg's homepage"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-parts.url = "github:hercules-ci/flake-parts"; }; outputs = { self, nixpkgs, flake-parts }@inputs: flake-parts.lib.mkFlake { inherit inputs; } { flake = { # Universal things }; systems = [ "x86_64-linux" "aarch64-linux" ]; perSystem = { config, pkgs, ... }: { devShells.default = pkgs.mkShell { nativeBuildInputs = [ pkgs.bashInteractive pkgs.hugo ]; buildInputs = [ ]; }; }; }; }