mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-09 18:51:15 +01:00
10 lines
110 B
Nix
10 lines
110 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
sops
|
||
|
gnupg
|
||
|
];
|
||
|
}
|
||
|
|
||
|
|