2.home-manager/home-manager/devShell.nix
teto 58330fd08d flake: add a devShell
that includes the formatter
2026-02-26 20:44:57 -06:00

11 lines
164 B
Nix

{ pkgs, mkShell }:
let
formatter = pkgs.callPackage ./formatter.nix { };
in
mkShell {
name = "devShell";
packages = [
pkgs.coreutils
formatter
];
}