mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
10 lines
146 B
Nix
10 lines
146 B
Nix
with import <nixpkgs> {};
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
bashInteractive
|
|
go
|
|
delve
|
|
gnupg
|
|
];
|
|
hardeningDisable = [ "all" ];
|
|
}
|