feat(devenv): Add base shell
This commit is contained in:
parent
95c6383196
commit
5967cefc5e
2 changed files with 13 additions and 1 deletions
|
@ -53,7 +53,10 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
devenv.shells.default = {
|
devenv.shells.default = {
|
||||||
imports = [ "${self}/shells/nix.nix" ];
|
imports = [
|
||||||
|
"${self}/shells/base.nix"
|
||||||
|
"${self}/shells/nix.nix"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
formatter = pkgs.nixfmt-rfc-style;
|
formatter = pkgs.nixfmt-rfc-style;
|
||||||
|
|
9
shells/base.nix
Normal file
9
shells/base.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
packages = with pkgs; [
|
||||||
|
gnupg
|
||||||
|
git
|
||||||
|
];
|
||||||
|
|
||||||
|
env.GPG_TTY = "\$(tty)";
|
||||||
|
}
|
Loading…
Reference in a new issue