Initial commit

This commit is contained in:
Antoine Martin 2024-02-29 10:23:54 +01:00
commit fc740545c5
4 changed files with 2453 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
} @ inputs:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in {
devShells.default = pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (p: [
p.dbus-python
p.pyopenssl
]))
];
};
});
}