mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-10-30 23:07:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   inputs = {
 | |
|     nixpkgs.url = "github:NixOS/nixpkgs";
 | |
|     flake-utils.url = "github:numtide/flake-utils";
 | |
|   };
 | |
|   outputs = {
 | |
|     self,
 | |
|     nixpkgs,
 | |
|     flake-utils,
 | |
|   }:
 | |
|     flake-utils.lib.eachDefaultSystem
 | |
|     (
 | |
|       system: let
 | |
|         pkgs = import nixpkgs {
 | |
|           inherit system;
 | |
|         };
 | |
|       in
 | |
|         with pkgs; {
 | |
|           devShells.default = mkShell {
 | |
|             buildInputs = [
 | |
|               just
 | |
|               ansible
 | |
|             ];
 | |
|             shellHook = ''
 | |
|               echo "$(ansible --version)"
 | |
|             '';
 | |
|           };
 | |
|         }
 | |
|     );
 | |
| }
 |