2023-01-28 20:49:10 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2021-06-06 13:22:44 +00:00
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
2023-01-28 20:49:10 +00:00
|
|
|
in {
|
|
|
|
home-manager = pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
|
2021-06-06 13:22:44 +00:00
|
|
|
home.sessionVariables = {
|
2023-02-02 16:25:07 +00:00
|
|
|
DRONE_SERVER = "https://ci.pub.solar";
|
2022-01-19 00:13:15 +00:00
|
|
|
GOPATH = "/home/${psCfg.user.name}/CodeRoom/go";
|
2021-06-06 13:22:44 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|