 33eee199cf
			
		
	
	
	33eee199cf
	
	
	
		
			
			Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8129 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: famfo <famfo@famfo.xyz> Co-committed-by: famfo <famfo@famfo.xyz>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			458 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			458 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   inputs = {
 | |
|     nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
 | |
|     flake-utils.url = "github:numtide/flake-utils";
 | |
|   };
 | |
|   outputs =
 | |
|     {
 | |
|       nixpkgs,
 | |
|       flake-utils,
 | |
|       ...
 | |
|     }:
 | |
|     flake-utils.lib.eachDefaultSystem (
 | |
|       system:
 | |
|       let
 | |
|         pkgs = nixpkgs.legacyPackages.${system};
 | |
|       in
 | |
|       {
 | |
|         devShells.default = import ./shell.nix { inherit pkgs; };
 | |
|         formatter = pkgs.nixfmt-rfc-style;
 | |
|       }
 | |
|     );
 | |
| }
 |