{ inputs, pkgs, config, lib, ... }: {
  nix = {
    package = pkgs.nixFlakes;
    useDaemon = true;
    nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
    extraOptions = ''
      experimental-features = nix-command flakes
    '';
  };
  nixpkgs = {
    config = { allowUnfree = true; };
    overlays = [
      (import ../../overlay)
      inputs.musicutil.overlay
      inputs.deploy-rs.overlay
    ];
  };
}