mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
25 lines
510 B
Nix
25 lines
510 B
Nix
{ username, ... }: {
|
|
home.stateVersion = "23.11";
|
|
|
|
programs = {
|
|
go = {
|
|
enable = true;
|
|
goPath = "go";
|
|
};
|
|
k9s.enable = true;
|
|
zsh = {
|
|
initExtra = ''
|
|
eval $(brew shellenv)
|
|
'';
|
|
};
|
|
};
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
i2cssh_config.path = "/Users/${username}/.i2csshrc";
|
|
local_git_config.path = "/Users/${username}/.gitconfig-local";
|
|
local_private_env.path = "/Users/${username}/.private-env";
|
|
};
|
|
};
|
|
}
|