mfgames-project-setup-flake/flake.nix

98 lines
3 KiB
Nix
Raw Normal View History

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 ? { }
, contributorCovenant ? { }
, developerCertificateOfOrigin ? { }
, prettier ? { }
2024-01-28 22:18:12 +00:00
, rust ? { }
, ...
}:
let
2024-01-28 22:21:43 +00:00
conformDefaults = { scopes = [ ]; };
contributorCovenantDefaults = { enable = false; };
developerCertificateOfOriginDefaults = { enable = false; };
prettierDefaults = { proseWrap = "preserve"; };
rustDefaults = { enable = false; };
text-engine = import ./src/engines/text.nix {
inherit pkgs;
lib = pkgs.lib;
};
2024-01-29 01:57:32 +00:00
2024-01-28 22:18:12 +00:00
configs = import ./src/configs/default.nix {
inherit system pkgs nixago nixago-exts;
text-engine = text-engine { };
contributorCovenant = contributorCovenantDefaults // contributorCovenant;
developerCertificateOfOrigin = developerCertificateOfOriginDefaults // developerCertificateOfOrigin;
2024-01-28 22:21:43 +00:00
conform = conformDefaults // conform;
prettier = prettierDefaults // prettier;
2024-01-28 22:18:12 +00:00
rust = rustDefaults // rust;
};
in
2024-01-28 22:33:58 +00:00
{
packages = [
pkgs.lefthook
pkgs.treefmt
pkgs.conform
];
2024-01-28 22:33:58 +00:00
shellHook = ''
${configs.shellHook}
${pkgs.lefthook}/bin/lefthook install
'';
};
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;
contributorCovenant.enable = true;
contributorCovenant.contact = "contact@mfgames.com";
developerCertificateOfOrigin.enable = true;
prettier.proseWrap = "always";
2024-01-28 22:18:12 +00:00
};
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);
};
}