update treefmt ()

Flake lock file updates:

• Updated input 'treefmt-nix':
    'github:numtide/treefmt-nix/6717065d6a432bc3f5b827007ad959e6032d5856' (2023-01-05)
  → 'github:numtide/treefmt-nix/d5ed9a1e6793f99b2e179d5dec9639e48ef22db7' (2023-01-23)
This commit is contained in:
zowoq 2023-01-24 07:28:07 +10:00 committed by GitHub
parent bfd801cf10
commit 4ed318d209
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 8 deletions

6
flake.lock generated
View file

@ -214,11 +214,11 @@
}, },
"treefmt-nix": { "treefmt-nix": {
"locked": { "locked": {
"lastModified": 1672931382, "lastModified": 1674470002,
"narHash": "sha256-lgtc2Sct/xtvqkdzlJ4AL3Vesw0Wz/fxqNGOBFS7YXU=", "narHash": "sha256-Tk1VaMeBTMMGEZeqv3TEwrTAdR9fYb3EH/TPI27AdKk=",
"owner": "numtide", "owner": "numtide",
"repo": "treefmt-nix", "repo": "treefmt-nix",
"rev": "6717065d6a432bc3f5b827007ad959e6032d5856", "rev": "d5ed9a1e6793f99b2e179d5dec9639e48ef22db7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -47,13 +47,14 @@
]; ];
perSystem = perSystem =
{ inputs' { config
, inputs'
, pkgs , pkgs
, self' , self'
, ... , ...
}: { }: {
devShells.default = pkgs.callPackage ./shell.nix { devShells.default = pkgs.callPackage ./shell.nix {
inherit (self'.packages) treefmt; inherit config;
}; };
}; };
flake.nixosConfigurations = flake.nixosConfigurations =

View file

@ -1,5 +1,5 @@
{ pkgs { config
, treefmt , pkgs
}: }:
with pkgs; with pkgs;
@ -23,6 +23,6 @@ mkShellNoCC {
] ]
)) ))
rsync rsync
treefmt config.treefmt.build.wrapper
]; ];
} }