system/shell.nix

9 lines
116 B
Nix
Raw Normal View History

2022-08-29 15:40:41 +03:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
stylua
2022-08-29 23:46:02 +03:00
git-crypt
2022-08-29 15:40:41 +03:00
];
}