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