14 lines
201 B
Nix
14 lines
201 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
{
|
||
|
# The minimum amount of dependencies in order to run 'just switch-now'
|
||
|
default = pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
just
|
||
|
git
|
||
|
git-crypt
|
||
|
nh
|
||
|
];
|
||
|
};
|
||
|
}
|