{ description = "Ansible Aurore"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; flake-parts.url = "github:hercules-ci/flake-parts"; }; outputs = inputs@{ self, nixpkgs, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { systems = [ "x86_64-linux" ]; perSystem = { config, pkgs, ... }: { devShells = { default = pkgs.callPackage ./shell.nix {}; }; }; }; }