Formatting

cephiroth
pigeonmoelleux 2024-02-03 19:10:36 +01:00
parent b31197716e
commit fa848ef713
No known key found for this signature in database
GPG Key ID: B3BE02E379E6E8E2
1 changed files with 6 additions and 3 deletions

View File

@ -4,8 +4,12 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
flake-parts.url = "github:hercules-ci/flake-parts";
treefmt-nix.url = "github:numtide/treefmt-nix"; # Formatter
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
# Formatter
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ { self, nixpkgs, flake-parts, ... }:
@ -25,5 +29,4 @@
};
};
};
}