mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
15 lines
376 B
Nix
15 lines
376 B
Nix
{ pkgs, username, ... }: {
|
|
home.packages = with pkgs; [
|
|
home-manager
|
|
];
|
|
|
|
sops = {
|
|
age.keyFile = /home/${username}/.config/sops/age/keys.txt;
|
|
defaultSopsFile = ../home-only/secrets.yaml;
|
|
# secrets = {
|
|
# local_git_config.path = "/home/${username}/.gitconfig-local";
|
|
# local_private_env.path = "/home/${username}/.private-env";
|
|
# };
|
|
};
|
|
}
|
|
|