mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
11 lines
267 B
Nix
11 lines
267 B
Nix
{ username, ... }: {
|
|
home.stateVersion = "23.11";
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
local_git_config.path = "/Users/${username}/.gitconfig-local";
|
|
local_private_env.path = "/Users/${username}/.private-env";
|
|
};
|
|
};
|
|
}
|