mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
So far, this is just based on mightymac. The other devices will be updated soon.
30 lines
591 B
Nix
30 lines
591 B
Nix
{ username, ... }: {
|
|
home.stateVersion = "23.11";
|
|
imports = [
|
|
../home.nix
|
|
../../common
|
|
../../common/all-gui.nix
|
|
];
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|