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