mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2025-09-21 04:56:05 +02:00
10 lines
124 B
Nix
10 lines
124 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
gnupg
|
|
sops
|
|
ssh-to-age
|
|
];
|
|
}
|
|
|