{ inputs = { nixpkgs.url = "github:NixOS/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; hello-flake.url = "git+https://codeberg.org/mhwombat/hello-flake"; }; outputs = { self, nixpkgs, flake-utils, hello-flake }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; customGhc = haskellPackages.ghcWithPackages (p: with p; [ containers ]); in { devShells = rec { default = pkgs.mkShell { buildInputs = [ customGhc ]; }; }; } ); }