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