dots/modules/hosts/darwin/mightymac/home-gene.liverman.nix
2025-07-16 16:15:00 -04:00

25 lines
578 B
Nix

{ username, ... }: {
home.stateVersion = "23.11";
programs = {
go = {
enable = true;
goPath = "go";
};
k9s.enable = true;
zellij = {
enable = true;
enableZshIntegration = true;
};
};
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";
user_nix_conf.path = "/Users/${username}/.config/nix/nix.conf";
};
};
}