Files
dotfiles/system-modules/sops.nix
Lennart J. Kurzweg (Nx2) 68cb4377b7 New Flake Style XPS fix
2025-05-27 12:12:36 +02:00

18 lines
286 B
Nix

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