feat: introduce treefmt and fmt all

This commit is contained in:
steveej 2024-11-15 10:17:56 +01:00
parent 80250b0179
commit 27c6c4f9fa
237 changed files with 5440 additions and 5214 deletions

View file

@ -2,29 +2,28 @@ let
nixpkgs = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "nixos-22.11";
rev = ''
5b7cd5c39befee629be284970415b6eb3b0ff000'';
rev = ''5b7cd5c39befee629be284970415b6eb3b0ff000'';
};
in {
in
{
inherit nixpkgs;
nixos = nixpkgs // {suffix = "/nixos";};
nixos = nixpkgs // {
suffix = "/nixos";
};
"channels-nixos-stable" = nixpkgs;
"channels-nixos-unstable" = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "nixos-unstable";
rev = ''
4bb072f0a8b267613c127684e099a70e1f6ff106'';
rev = ''4bb072f0a8b267613c127684e099a70e1f6ff106'';
};
"nixpkgs-master" = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "master";
rev = ''
a8636efe2df64047cd58898010a72f73efd56722'';
rev = ''a8636efe2df64047cd58898010a72f73efd56722'';
};
"home-manager-module" = {
url = "https://github.com/nix-community/home-manager";
ref = "release-22.11";
rev = ''
83110c259889230b324bb2d35bef78bf5f214a1f'';
rev = ''83110c259889230b324bb2d35bef78bf5f214a1f'';
};
}