nix: remove deprecated flake attributes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bruno BELANYI 2022-06-20 14:46:37 +02:00
parent 3e3cc71043
commit 588d2b3f21

View file

@ -61,15 +61,17 @@
}; };
}; };
devShell = pkgs.mkShell { devShells = {
name = "blog"; default = pkgs.mkShell {
name = "blog";
buildInputs = with pkgs; [ buildInputs = with pkgs; [
gnumake gnumake
hugo hugo
]; ];
inherit (self.checks.${system}.pre-commit) shellHook; inherit (self.checks.${system}.pre-commit) shellHook;
};
}; };
} }
); );