Files
Lennart J. Kurzweg (Nx2) d2d1ce7830 overlays refactor
2025-06-17 19:48:31 +02:00

18 lines
300 B
Nix

{ pkgs, ... }@all: with all;
{
environment.systemPackages = with pkgs; [
age
ssh-to-age
sops
];
sops = {
defaultSopsFile = ../sops-secrets.yaml;
defaultSopsFormat = "yaml";
# gnupg = {
# sshKeyPaths = [];
# home = "${hyper.user}/.gnupg";
# };
};
}