2025-04-16 18:18:17 +01:00
|
|
|
{
|
2025-06-03 23:35:21 +01:00
|
|
|
inputs = {
|
|
|
|
devshell.url = "github:numtide/devshell";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
2025-05-29 11:11:06 +01:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
};
|
2025-04-16 18:18:17 +01:00
|
|
|
|
|
|
|
outputs =
|
2025-06-03 23:35:21 +01:00
|
|
|
inputs@{ flake-parts, ... }:
|
2025-06-21 00:49:30 +01:00
|
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
2025-06-03 23:35:21 +01:00
|
|
|
systems = [ "x86_64-linux" ];
|
|
|
|
|
|
|
|
imports = [
|
2025-06-21 01:38:39 +01:00
|
|
|
./nix/modules/dev-shell.nix
|
2025-06-03 23:35:21 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
perSystem =
|
2025-06-21 00:46:02 +01:00
|
|
|
{ pkgs, ... }:
|
2025-06-03 23:35:21 +01:00
|
|
|
{
|
|
|
|
formatter = pkgs.nixfmt-rfc-style;
|
|
|
|
};
|
2025-06-21 00:49:30 +01:00
|
|
|
};
|
2025-04-16 18:18:17 +01:00
|
|
|
}
|