Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
441 B

  1. {
  2. inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
  3. outputs = { self, nixpkgs, ... }:
  4. let
  5. pkgs = import nixpkgs { system = "x86_64-linux"; };
  6. in
  7. {
  8. devShell.x86_64-linux = pkgs.mkShell {
  9. buildInputs = with pkgs; [
  10. just
  11. python311Packages.ansible-core
  12. python311Packages.passlib
  13. ];
  14. LC_ALL = "C.UTF-8";
  15. LC_CTYPE = "C.UTF-8";
  16. };
  17. };
  18. }