2024-01-28 20:32:33 +00:00
|
|
|
{
|
|
|
|
description = "Common setup for many projects that use a variety of languages.";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
|
|
|
|
|
|
|
|
nixago.url = "github:jmgilman/nixago";
|
|
|
|
nixago.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
|
|
|
nixago-exts.url = "github:nix-community/nixago-extensions";
|
|
|
|
nixago-exts.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = inputs @ { self, nixpkgs, nixago, nixago-exts, ... }:
|
|
|
|
let
|
|
|
|
# Helpers for producing system-specific outputs
|
|
|
|
supportedSystems = [ "x86_64-linux" ];
|
|
|
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
|
|
|
inherit system;
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
});
|
|
|
|
in
|
2024-01-28 22:18:12 +00:00
|
|
|
rec
|
2024-01-28 20:32:33 +00:00
|
|
|
{
|
2024-01-28 20:49:19 +00:00
|
|
|
# Expose the configuration information.
|
2024-01-28 21:11:23 +00:00
|
|
|
lib = {
|
2024-01-28 22:33:58 +00:00
|
|
|
mkConfig =
|
2024-01-28 22:18:12 +00:00
|
|
|
{ system
|
|
|
|
, pkgs
|
2024-01-28 22:21:43 +00:00
|
|
|
, conform ? { }
|
2024-01-28 22:18:12 +00:00
|
|
|
, rust ? { }
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
rustDefaults = { enable = false; };
|
2024-01-28 22:21:43 +00:00
|
|
|
conformDefaults = { scopes = [ ]; };
|
2024-01-28 22:18:12 +00:00
|
|
|
configs = import ./src/configs/default.nix {
|
|
|
|
inherit system pkgs nixago nixago-exts;
|
2024-01-28 22:21:43 +00:00
|
|
|
conform = conformDefaults // conform;
|
2024-01-28 22:18:12 +00:00
|
|
|
rust = rustDefaults // rust;
|
|
|
|
};
|
|
|
|
in
|
2024-01-28 22:33:58 +00:00
|
|
|
{
|
|
|
|
packages = [ pkgs.lefthook ];
|
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
${configs.shellHook}
|
|
|
|
${pkgs.lefthook}/bin/lefthook install
|
|
|
|
|
|
|
|
alias lefthook="${pkgs.lefthook}/bin/lefthook"
|
|
|
|
'';
|
|
|
|
};
|
2024-01-28 21:11:23 +00:00
|
|
|
};
|
|
|
|
|
2024-01-28 20:32:33 +00:00
|
|
|
# Set up the developer shell.
|
|
|
|
devShells = forEachSupportedSystem ({ system, pkgs }:
|
|
|
|
let
|
2024-01-28 22:33:58 +00:00
|
|
|
config = lib.mkConfig {
|
2024-01-28 22:18:12 +00:00
|
|
|
inherit system pkgs;
|
|
|
|
#rust.enable = false;
|
|
|
|
};
|
2024-01-28 20:32:33 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
# Shell
|
|
|
|
default = pkgs.mkShell {
|
2024-01-28 22:33:58 +00:00
|
|
|
packages = [ ] ++ config.packages;
|
|
|
|
shellHook = config.shellHook;
|
2024-01-28 20:32:33 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
# Formatting for the Nix files
|
|
|
|
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixpkgs-fmt);
|
|
|
|
};
|
|
|
|
}
|