xmonad-config/nix/modules/flake/devshell.nix

20 lines
560 B
Nix

{
perSystem = { config, pkgs, ... }: {
# Default shell.
devShells.default = pkgs.mkShell {
name = "xmonad-config";
meta.description = "Haskell development environment";
# See https://community.flake.parts/haskell-flake/devshell#composing-devshells
inputsFrom = [
config.haskellProjects.default.outputs.devShell # See ./nix/modules/haskell.nix
config.pre-commit.devShell # See ./nix/modules/formatter.nix
];
packages = with pkgs; [
just
nixd
ghciwatch
];
};
};
}