21 lines
455 B
Nix
21 lines
455 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
#imports = [
|
|
# sops-nix.homeManagerModules.sops
|
|
#];
|
|
|
|
home.packages = with pkgs; [ sops age ];
|
|
|
|
#sops = {
|
|
# enable = true;
|
|
# defaultSopsFile = ../secrets/secrets.enc.yaml;
|
|
# age.keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
|
|
# secrets.test = {
|
|
# sopsFile = ../secrets/secrets.enc.yaml;
|
|
# path = "%r/test.txt"; # will resolve to $XDG_RUNTIME_DIR/test.txt
|
|
# };
|
|
#};
|
|
}
|