mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
22 lines
343 B
Nix
Executable file
22 lines
343 B
Nix
Executable file
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
age
|
|
alejandra
|
|
just
|
|
nil
|
|
sops
|
|
ssh-to-age
|
|
;
|
|
};
|
|
shellHook = "${config.pre-commit.installationScript}";
|
|
};
|
|
};
|
|
}
|