oliverdavies.uk/flake.nix
Oliver Davies 3a28895159 Add sqlite
So installing from existing configuration will work.
2025-05-11 20:02:12 +01:00

21 lines
394 B
Nix

{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
just
php83
php83Packages.composer
sqlite
];
};
};
}