feat(devenv): Add base shell

This commit is contained in:
punkfairie 2024-11-14 18:13:11 +00:00
parent 95c6383196
commit 5967cefc5e
2 changed files with 13 additions and 1 deletions

View file

@ -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
View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
packages = with pkgs; [
gnupg
git
];
env.GPG_TTY = "\$(tty)";
}