oliverdavies.uk/flake.nix

24 lines
492 B
Nix
Raw Normal View History

2025-04-16 18:18:17 +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 =
inputs@{ flake-parts, ... }:
2025-06-21 00:49:30 +01:00
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
imports = [
2025-06-21 01:38:39 +01:00
./nix/modules/dev-shell.nix
];
perSystem =
2025-06-21 00:46:02 +01:00
{ pkgs, ... }:
{
formatter = pkgs.nixfmt-rfc-style;
};
2025-06-21 00:49:30 +01:00
};
2025-04-16 18:18:17 +01:00
}