mirror of
https://github.com/genebean/dots.git
synced 2026-05-31 07:45:20 -04:00
11 lines
198 B
Nix
11 lines
198 B
Nix
{ username, ... }:
|
|
{
|
|
home.stateVersion = "23.11";
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
local_private_env.path = "/Users/${username}/.private-env";
|
|
};
|
|
};
|
|
}
|