19 lines
345 B
Nix
19 lines
345 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
sops
|
|
age
|
|
];
|
|
|
|
sops = {
|
|
#defaultSopsFile = ./../secrets/secrets.enc.yaml;
|
|
age.keyFile = "/home/wieerwill/.config/sops/age/keys.txt";
|
|
};
|
|
|
|
#sops.secrets.git-email = {
|
|
# owner = "wieerwill";
|
|
# path = "/home/wieerwill/.config/git-email";
|
|
#};
|
|
}
|