mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
28 lines
527 B
Nix
Executable file
28 lines
527 B
Nix
Executable file
{ pkgs, config, ... }:
|
|
{
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
age
|
|
gitmoji-cli
|
|
graphviz
|
|
imv
|
|
just
|
|
nixfmt
|
|
just-lsp
|
|
litemdview
|
|
nil
|
|
openssl
|
|
pqiv
|
|
sops
|
|
ssh-to-age
|
|
taplo
|
|
vscode-langservers-extracted
|
|
watchexec
|
|
;
|
|
};
|
|
shellHook = "${config.pre-commit.installationScript}";
|
|
};
|
|
};
|
|
}
|