mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
19 lines
375 B
Nix
19 lines
375 B
Nix
{ username, ... }: {
|
|
home.stateVersion = "23.11";
|
|
|
|
programs = {
|
|
go = {
|
|
enable = true;
|
|
goPath = "go";
|
|
};
|
|
k9s.enable = true;
|
|
};
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
local_git_config.path = "/Users/${username}/.gitconfig-local";
|
|
local_private_env.path = "/Users/${username}/.private-env";
|
|
};
|
|
};
|
|
}
|